14 lines
349 B
Python

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