v0.0.2: split api_bp into upload/process/download modules, Connection: close, upload tests (13 new, 106 total)
Deploy drhider / validate (push) Waiting to run

This commit is contained in:
2026-07-13 09:15:38 +04:00
parent 345448caa4
commit c35e8da357
7 changed files with 387 additions and 97 deletions
+2 -1
View File
@@ -20,7 +20,7 @@ if _sys_path_root not in sys.path:
sys.path.insert(0, _sys_path_root)
# Версия приложения (меняется при изменениях)
VERSION = "0.0.1"
VERSION = "0.0.2"
def create_app():
@@ -51,6 +51,7 @@ def create_app():
response.headers["Cache-Control"] = "no-cache, no-store, must-revalidate"
response.headers["Pragma"] = "no-cache"
response.headers["Expires"] = "0"
response.headers["Connection"] = "close"
return response
return app