Spaces:
Sleeping
Sleeping
| ## bookmyservice-ums/settings.py | |
| from pydantic import BaseSettings | |
| class Settings(BaseSettings): | |
| SECRET_KEY: str = "secret-key-placeholder" | |
| ALGORITHM: str = "HS256" | |
| settings = Settings() | |