Skip to content

Commit

Permalink
Create __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
TechifyBots authored Oct 14, 2023
1 parent 1ffb215 commit e2c8c0b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Adarsh/server/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# © NobiDeveloper

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

0 comments on commit e2c8c0b

Please sign in to comment.