risotto/script/server.py

7 lines
112 B
Python

from aiohttp.web import run_app
from risotto import get_app
if __name__ == '__main__':
run_app(get_app())