From b5d4b900487262e1fce8e29e30da9e86a7729b1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Thu, 16 Jul 2026 11:14:51 +0400 Subject: [PATCH] =?UTF-8?q?convert-service:=20=D0=BB=D0=BE=D0=B3=D0=BE=20?= =?UTF-8?q?=D1=87=D0=B5=D1=80=D0=B5=D0=B7=20/static/logo.svg=20(=D0=BA?= =?UTF-8?q?=D0=B0=D0=BA=20=D0=B2=20=D0=A1=D0=B2=D0=B5=D1=80=D0=BA=D0=B5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- convert-service/app.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/convert-service/app.py b/convert-service/app.py index 4c6e242..6c0df5f 100644 --- a/convert-service/app.py +++ b/convert-service/app.py @@ -53,7 +53,7 @@ h1{font-size:22px;font-weight:700;margin-bottom:6px}
- Nubes + Nubes КОНВЕРТЕР v__VERSION__
@@ -180,6 +180,11 @@ def convert(): def health(): return {"ok": True, "version": VERSION} +@app.route("/static/logo.svg") +def logo(): + from flask import Response + return Response(_LOGO_SVG, mimetype="image/svg+xml") + if __name__ == "__main__": import io app.run(host="0.0.0.0", port=5000)