first commit

This commit is contained in:
2019-11-28 14:50:53 +01:00
commit 37499daccf
165 changed files with 4995 additions and 0 deletions

6
script/server.py Normal file
View File

@ -0,0 +1,6 @@
from aiohttp.web import run_app
from risotto import get_app
if __name__ == '__main__':
run_app(get_app())