2026-01-01 23:17:19 -03:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
2026-04-21 07:05:08 -03:00
|
|
|
"""Account route registration facade."""
|
2026-01-01 23:17:19 -03:00
|
|
|
|
2026-04-21 07:05:08 -03:00
|
|
|
from .account_actions import register_account_actions
|
|
|
|
|
from .account_overview import register_account_overview
|
2026-01-02 04:27:44 -03:00
|
|
|
|
|
|
|
|
|
2026-01-01 23:17:19 -03:00
|
|
|
def register(app) -> None:
|
2026-04-21 07:05:08 -03:00
|
|
|
"""Register all account self-service and admin routes."""
|
2026-01-03 12:18:46 -03:00
|
|
|
|
2026-04-21 07:05:08 -03:00
|
|
|
register_account_overview(app)
|
|
|
|
|
register_account_actions(app)
|