formaptix-server/models/settings.py

11 lines
147 B
Python
Raw Normal View History

2024-08-08 22:14:02 +03:00
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
database: str
secret: str
port: int
settings = Settings()