| 22 | |
| 23 | |
| 24 | class CarbonServerSettings(BaseSettings): |
| 25 | app_hostname: str |
| 26 | |
| 27 | model_config = SettingsConfigDict( |
| 28 | env_file=".env", env_file_encoding="utf-8", extra="allow" |
| 29 | ) |
| 30 | |
| 31 | |
| 32 | app = typer.Typer() |
no outgoing calls
no test coverage detected
searching dependent graphs…