8 lines
95 B
Python
8 lines
95 B
Python
from aiohttp.web import Application
|
|
|
|
from . import set_app
|
|
|
|
|
|
app = Application()
|
|
|
|
set_app(app)
|