feat:重试和失败均通知前端

This commit is contained in:
zcr
2025-12-24 11:30:11 +08:00
parent 7a1496aeb7
commit 8ccf899441
5 changed files with 38 additions and 16 deletions

View File

@@ -16,6 +16,8 @@ class Settings(BaseSettings):
env_file_encoding='utf-8',
extra='ignore' # 忽略环境变量中多余的键
)
# 启动端口
SERVE_PROD: int = Field(default=8000, description='')
# 调试配饰
LOCAL: int = Field(default=0, description="是否在本地运行1表示本地运行0表示生产环境运行")