mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 10:03:56 +03:00
11 lines
154 B
Python
11 lines
154 B
Python
|
"""Main module."""
|
||
|
|
||
|
from aiohttp import web
|
||
|
|
||
|
from .application import create_app
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
app = create_app()
|
||
|
web.run_app(app)
|