mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-12-22 22:21:17 +01:00
10 lines
254 B
Python
10 lines
254 B
Python
from typing import Literal
|
|
|
|
from confz import BaseConfig, EnvSource
|
|
|
|
|
|
class OperationMode(BaseConfig): # type: ignore
|
|
environment: Literal["development"] | Literal["production"] = "development"
|
|
|
|
CONFIG_SOURCES = EnvSource(allow=["ENVIRONMENT"])
|