Files
leocrm/app/routes/__init__.py
T

22 lines
532 B
Python
Raw Normal View History

"""Routes package."""
from app.routes import (
ai_copilot, # noqa: F401
auth, # noqa: F401
companies, # noqa: F401
contacts, # noqa: F401
2026-07-04 00:22:07 +00:00
currencies, # noqa: F401
2026-07-04 00:23:35 +00:00
taxes, # noqa: F401
2026-07-04 00:24:40 +00:00
sequences, # noqa: F401
2026-07-04 00:26:21 +00:00
system_settings, # noqa: F401
health, # noqa: F401
import_export, # noqa: F401
metrics, # noqa: F401
notifications, # noqa: F401
plugins, # noqa: F401
roles, # noqa: F401
tenants, # noqa: F401
users, # noqa: F401
workflows, # noqa: F401
)