from pydantic_settings import BaseSettings

class Settings(BaseSettings):
    # Token settings
    SECRET_TOKEN: str
    FARNET_KEY: str
    class Config:
        env_file = ".env"
        env_file_encoding = "utf-8"
        extra = "allow"
        case_sensitive = True
