Фикс роутов

This commit is contained in:
Данил 2024-09-25 15:36:55 +03:00
parent e030b60978
commit 752914349a

View file

@ -15,12 +15,12 @@ app.mount('/.well-known/', StaticFiles(directory='./.well-known/'))
@app.route('/app-ads.txt') @app.route('/app-ads.txt')
async def app_ads(req, __): async def app_ads(req):
return FileResponse('./app-ads.txt') return FileResponse('./app-ads.txt')
@app.route('/robots.txt') @app.route('/robots.txt')
async def robots_txt(req, __): async def robots_txt(req):
return FileResponse('./robots.txt') return FileResponse('./robots.txt')