2026-06-29 00:10:10 +02:00
|
|
|
"""Routes package."""
|
2026-06-29 01:18:46 +02:00
|
|
|
|
2026-06-29 17:43:56 +02:00
|
|
|
from app.routes import (
|
2026-07-01 23:15:35 +02:00
|
|
|
metrics, # noqa: F401
|
2026-06-29 17:43:56 +02:00
|
|
|
ai_copilot, # noqa: F401
|
|
|
|
|
auth, # noqa: F401
|
|
|
|
|
companies, # noqa: F401
|
|
|
|
|
contacts, # noqa: F401
|
|
|
|
|
health, # noqa: F401
|
|
|
|
|
import_export, # noqa: F401
|
|
|
|
|
notifications, # noqa: F401
|
|
|
|
|
plugins, # noqa: F401
|
|
|
|
|
roles, # noqa: F401
|
|
|
|
|
tenants, # noqa: F401
|
|
|
|
|
users, # noqa: F401
|
|
|
|
|
workflows, # noqa: F401
|
|
|
|
|
)
|