| 79 | |
| 80 | @dataclass |
| 81 | class ServerConfig: |
| 82 | host: str = "localhost" |
| 83 | enable_cors: bool = True |
| 84 | max_connections: int = 100 |
| 85 | timeout: int = 30 |
| 86 | ssl: SSLConfig | None = None |
| 87 | logging: LoggingConfig | None = None |
| 88 | static: StaticConfig | None = None |
| 89 | |
| 90 | @dataclass |
| 91 | class NLWebConfig: |
no outgoing calls
no test coverage detected