mirror of
https://github.com/flibusta-apps/fb2converter_server.git
synced 2026-03-03 15:10:50 +01:00
9 lines
114 B
Python
9 lines
114 B
Python
from pydantic import BaseSettings
|
|
|
|
|
|
class EnvConfig(BaseSettings):
|
|
SENTRY_DSN: str
|
|
|
|
|
|
env_config = EnvConfig()
|