Files
hermes-dashboard/routes/__init__.py

7 lines
133 B
Python

"""Routes package."""
from routes.api import bp as api_bp
from routes.pages import bp as pages_bp
__all__ = ["api_bp", "pages_bp"]