Files
Solo_bot/web/__init__.py
T
2025-05-08 15:50:53 +03:00

12 lines
234 B
Python

from aiohttp import web
from aiohttp.web_urldispatcher import UrlDispatcher
import bot
async def register_web_routes(router: UrlDispatcher) -> None:
app = web.Application()
dp = bot.dp
# todo: add your api routes here