mirror of
https://gitlab.com/octospacc/TelegramIndex-Fork.git
synced 2025-02-20 05:20:49 +01:00
7 lines
114 B
Python
7 lines
114 B
Python
from aiohttp import web
|
|
|
|
|
|
class WildcardView:
|
|
async def wildcard(self, req):
|
|
raise web.HTTPFound("/")
|