bookmyservice-ums / app /settings.py
MukeshKapoor25's picture
Add initial implementation of User Management Service
b407a42
raw
history blame contribute delete
200 Bytes
## bookmyservice-ums/settings.py
from pydantic import BaseSettings
class Settings(BaseSettings):
SECRET_KEY: str = "secret-key-placeholder"
ALGORITHM: str = "HS256"
settings = Settings()