Files
FileStreamBot/FileStream/server/__init__.py
Avi Patil 61b7dac2b7 Updated ?
Nothing new but, looks like something changed ;) !
2023-12-10 03:22:07 +05:30

8 lines
183 B
Python

from aiohttp import web
from .stream_routes import routes
def web_server():
web_app = web.Application(client_max_size=30000000)
web_app.add_routes(routes)
return web_app