This commit is contained in:
aaron 2025-01-15 23:10:11 +08:00
parent e1a01906f8
commit c1d02e3cf2
3 changed files with 4 additions and 2 deletions

View File

@ -12,7 +12,7 @@ from app.middleware.request_logger import RequestLoggerMiddleware
Base.metadata.create_all(bind=engine)
app = FastAPI(
title="闪兔到家",
title="Beefast 蜂快到家",
description="API 文档",
version="1.0.0"
)

View File

@ -12,6 +12,7 @@ import string
class UserRole(str, enum.Enum):
USER = "user"
DELIVERYMAN = "deliveryman"
MERCHANT = "merchant"
ADMIN = "admin"
class Gender(str, enum.Enum):

View File

@ -11,4 +11,5 @@ pymysql==1.1.0
SQLAlchemy==2.0.27
unisms
cos-python-sdk-v5==1.9.25
bcrypt
bcrypt
aiohttp==3.9.1