9 lines
213 B
Python
9 lines
213 B
Python
"""Service layer package.
|
|
|
|
Routes import service modules directly, e.g.:
|
|
from app.services import address_service
|
|
|
|
This works via Python's module system without needing
|
|
explicit re-exports in __init__.py.
|
|
"""
|