mirror of
https://github.com/flibusta-apps/fb2converter_server.git
synced 2025-12-06 06:55:36 +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()
|