9 lines
216 B
Python
9 lines
216 B
Python
|
|
"""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] = []
|