formaptix-server/models/settings.py
2024-08-08 22:14:02 +03:00

10 lines
147 B
Python

from pydantic_settings import BaseSettings
class Settings(BaseSettings):
database: str
secret: str
port: int
settings = Settings()