13 lines
243 B
Python
13 lines
243 B
Python
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:
|
|
loop.run_forever()
|
|
except KeyboardInterrupt:
|
|
pass
|
|
|
|
|