"""Account app service registration.""" from __future__ import annotations def register_domain_services() -> None: """Register services for the account app.""" from shared.services.registry import services from .account_page import AccountPageService services.register("account_page", AccountPageService()) from shared.services.account_impl import SqlAccountDataService services.register("account", SqlAccountDataService())