14 lines
349 B
Python
Raw Normal View History

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."""
2026-01-03 12:18:46 -03:00
register_account_overview(app)
register_account_actions(app)