template
This commit is contained in:
10
backend/services/__init__.py
Normal file
10
backend/services/__init__.py
Normal file
@@ -0,0 +1,10 @@
|
||||
"""
|
||||
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"]
|
||||
Reference in New Issue
Block a user