mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-01-31 19:54:30 +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)
|