Files
crm-system/app/services/__init__.py
T

9 lines
216 B
Python
Raw Normal View History

2026-06-04 00:06:24 +00:00
"""Service layer for the CRM system.
Submodules are imported directly by routers via
`from app.services.<name> import <func>` to avoid circular-import issues
during application startup.
"""
__all__: list[str] = []