Files
FileStreamBot/WebStreamer/server/__init__.py

12 lines
289 B
Python
Raw Normal View History

2021-05-15 23:41:54 +05:30
# © Avishkar Patil [ @AvishkarPatil ] [ Telegram ]
2021-04-16 19:37:44 +05:30
# Coding : Jyothis Jayanth [@EverythingSuckz]
from aiohttp import web
from .stream_routes import routes
async def web_server():
web_app = web.Application(client_max_size=30000000)
web_app.add_routes(routes)
2021-05-15 23:41:54 +05:30
return web_app