mirror of
https://gitlab.com/octospacc/TelegramIndex-Fork.git
synced 2025-02-22 06:17:41 +01:00
7 lines
115 B
Python
7 lines
115 B
Python
from aiohttp import web
|
|
|
|
|
|
class WildcardView:
|
|
async def wildcard(self, req):
|
|
return web.HTTPFound("/")
|