Spaces:
Sleeping
Sleeping
File size: 200 Bytes
b407a42 | 1 2 3 4 5 6 7 8 9 10 11 12 |
## bookmyservice-ums/settings.py
from pydantic import BaseSettings
class Settings(BaseSettings):
SECRET_KEY: str = "secret-key-placeholder"
ALGORITHM: str = "HS256"
settings = Settings()
|