risotto/script/server.py

7 lines
112 B
Python
Raw Normal View History

2019-11-28 14:50:53 +01:00
from aiohttp.web import run_app
from risotto import get_app
if __name__ == '__main__':
run_app(get_app())