# Taken from megadlbot_oss # Thanks to Eyaadh # This file is a part of TG-FileStreamBot # 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) return web_app