From 752914349a5d761e2d446b4f3df98acce1efd1ea Mon Sep 17 00:00:00 2001 From: Redume Date: Wed, 25 Sep 2024 15:36:55 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81=20=D1=80=D0=BE=D1=83?= =?UTF-8?q?=D1=82=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 1458bc5..1a03f90 100644 --- a/main.py +++ b/main.py @@ -15,12 +15,12 @@ app.mount('/.well-known/', StaticFiles(directory='./.well-known/')) @app.route('/app-ads.txt') -async def app_ads(req, __): +async def app_ads(req): return FileResponse('./app-ads.txt') @app.route('/robots.txt') -async def robots_txt(req, __): +async def robots_txt(req): return FileResponse('./robots.txt')