⚒️ 重大重构 LoveACE V2
引入了 mongodb 对数据库进行了一定程度的数据加密 性能改善 代码简化 统一错误模型和响应 使用 apifox 作为文档
This commit is contained in:
8
loveace/router/endpoint/profile/model/uuid2s3key.py
Normal file
8
loveace/router/endpoint/profile/model/uuid2s3key.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from pydantic import BaseModel, Field
|
||||
|
||||
|
||||
class Uuid2S3KeyCache(BaseModel):
|
||||
"""UUID 到 S3 Key 的缓存模型"""
|
||||
|
||||
s3_key: str = Field(..., description="S3对象的key")
|
||||
md5: str = Field(..., description="文件的MD5值")
|
||||
Reference in New Issue
Block a user