Files
hack-nation/backend/services/__init__.py

11 lines
246 B
Python
Raw Normal View History

2026-02-03 21:58:25 +01:00
"""
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"]