forked from Infra/risotto
7 lines
112 B
Python
7 lines
112 B
Python
|
from aiohttp.web import run_app
|
||
|
from risotto import get_app
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
run_app(get_app())
|
||
|
|