11 lines
246 B
Python
11 lines
246 B
Python
|
|
"""
|
||
|
|
Services Package
|
||
|
|
|
||
|
|
This package contains business logic and external service integrations.
|
||
|
|
Keeping business logic separate from routes makes the code more testable.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from . import ai_service, database
|
||
|
|
|
||
|
|
__all__ = ["ai_service", "database"]
|