V1.2.0 alpha 1

- 支持使用 api 提交物品信息
- 支持 JWT 鉴权
This commit is contained in:
2025-03-28 04:53:37 +08:00
parent 3ff07b89de
commit 7d0d59677d
18 changed files with 695 additions and 247 deletions

6
model/response.py Normal file
View File

@@ -0,0 +1,6 @@
from pydantic import BaseModel
class DefaultResponse(BaseModel):
code: int = 0
data: dict | list | None = None
msg: str = ""