risotto/src/risotto/__init__.py

7 lines
118 B
Python
Raw Normal View History

2019-11-28 14:50:53 +01:00
from .http import get_app
# just to register every route
from . import services as _services
2019-12-02 10:29:40 +01:00
__ALL__ = ('get_app',)
2019-11-28 14:50:53 +01:00