16 lines
428 B
Python

from __future__ import annotations
"""Account route registration facade."""
from .account_actions import register_account_actions
from .account_overview import register_account_overview
from .account_wolf import register_account_wolf
def register(app) -> None:
"""Register all account self-service and admin routes."""
register_account_overview(app)
register_account_actions(app)
register_account_wolf(app)