Module spin_sdk.spin_config
Module for getting Spin configuration values
Expand source code
"""Module for getting Spin configuration values"""
def config_get(key: str) -> str:
"""Get a configuration value for the current component.
The config key must match one defined in in the component manifest.
"""
raise NotImplementedError
Functions
def config_get(key: str) ‑> str
-
Get a configuration value for the current component.
The config key must match one defined in in the component manifest.
Expand source code
def config_get(key: str) -> str: """Get a configuration value for the current component. The config key must match one defined in in the component manifest. """ raise NotImplementedError