mirror of
https://github.com/flibusta-apps/fb2converter_server.git
synced 2025-12-06 06:55:36 +01:00
11 lines
153 B
Python
11 lines
153 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseSettings
|
|
|
|
|
|
class EnvConfig(BaseSettings):
|
|
SENTRY_DSN: Optional[str]
|
|
|
|
|
|
env_config = EnvConfig()
|