From 836dd3978d260272ad74808282f1f146ddca7386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Sat, 11 Jul 2026 00:05:28 +0400 Subject: [PATCH] =?UTF-8?q?fix:=20remove=20duplicate=20routes,=20bump=201.?= =?UTF-8?q?0.11=E2=86=921.0.12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- site/app.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/site/app.py b/site/app.py index 32f13dc..73b72a5 100644 --- a/site/app.py +++ b/site/app.py @@ -34,16 +34,6 @@ def ws_upload(ws): 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']) def upload(): t0 = time.time()