支持上传文件接口功能

This commit is contained in:
floraachy
2023-06-19 15:56:00 +08:00
parent 2f6aacfbc2
commit ec85f08e98
5 changed files with 319 additions and 91 deletions
+4 -1
View File
@@ -17,9 +17,12 @@ COMMON_DIR = os.path.join(BASE_DIR, "common_utils")
# 配置模块目录
CONF_DIR = os.path.join(BASE_DIR, "config")
# 数据模块目录
# 测试数据模块目录
DATA_DIR = os.path.join(BASE_DIR, "data")
# 测试文件模块目录
FILES_DIR = os.path.join(BASE_DIR, "files")
# 日志/报告保存目录
OUT_DIR = os.path.join(BASE_DIR, "outputs")
if not os.path.exists(OUT_DIR):