feat(config): add the AUTH_SERVICE_ENDPOINT

This commit is contained in:
YuehuCao 2025-09-11 22:24:56 +08:00
parent 1c70143f2d
commit bf1e476c0b

View File

@ -25,6 +25,8 @@ class AppSettings(BaseSettings):
ACCESS_TOKEN_EXPIRE_MINUTES: int = 3600 ACCESS_TOKEN_EXPIRE_MINUTES: int = 3600
REFRESH_TOKEN_EXPIRE_DAYS: int = 1 REFRESH_TOKEN_EXPIRE_DAYS: int = 1
AUTH_SERVICE_ENDPOINT: str = ""
SENDGRID_API_KEY: str = "" SENDGRID_API_KEY: str = ""