Load services as submodules

This commit is contained in:
2020-03-25 14:35:05 +01:00
parent b2151c41bc
commit e475dffc95
4 changed files with 23 additions and 3 deletions

13
script/risotto.py Normal file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env python3
from asyncio import get_event_loop
from risotto import get_app
if __name__ == '__main__':
loop = get_event_loop()
loop.run_until_complete(get_app(loop))
try:
print('HTTP server ready')
loop.run_forever()
except KeyboardInterrupt:
pass