12 lines
314 B
Python
12 lines
314 B
Python
"""Compatibility import for access-owned admin routes.
|
|
|
|
The remaining platform admin routes are contributed by the `admin`, `tenancy`,
|
|
`policy`, and `audit` modules through their own manifests.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from govoplan_access.backend.api.v1.routes import router
|
|
|
|
__all__ = ["router"]
|