fix: remove duplicate routes, bump 1.0.11→1.0.12
Deploy loadtest / validate (push) Waiting to run

This commit is contained in:
2026-07-11 00:05:28 +04:00
parent 6647b17558
commit 836dd3978d
-10
View File
@@ -34,16 +34,6 @@ def ws_upload(ws):
ws.send(json.dumps({'ok': True, 'bytes': total, 'elapsed_ms': elapsed})) ws.send(json.dumps({'ok': True, 'bytes': total, 'elapsed_ms': elapsed}))
@app.route('/')
def index():
return render_template('index.html', version=VERSION)
@app.route('/health')
def health():
return {'ok': True, 'version': VERSION}
@app.route('/upload', methods=['POST']) @app.route('/upload', methods=['POST'])
def upload(): def upload():
t0 = time.time() t0 = time.time()