first commit

This commit is contained in:
2025-11-30 00:07:24 +01:00
commit b5e642aecb
78 changed files with 15162 additions and 0 deletions

13
app/services/__init__.py Normal file
View File

@ -0,0 +1,13 @@
"""
Services package - Business Logic Layer
All business logic goes in services. Services orchestrate workflows,
enforce business rules, and coordinate between repositories.
"""
from app.services.auth_service import AuthService
from app.services.user_service import UserService
from app.services.oidc_service import OIDCService
from app.services.client_service import ClientService
from app.services.analytics_service import AnalyticsService
__all__ = ['AuthService', 'UserService', 'OIDCService', 'ClientService', 'AnalyticsService']