forked from cardosofelipe/pragma-stack
- Consistently format multi-line function headers, exception handling, and repository method calls for readability. - Reorganize misplaced imports across modules (e.g., services & tests) into proper sorted order. - Adjust indentation, line breaks, and spacing inconsistencies in tests and migration files. - Cleanup unnecessary trailing newlines and reorganize `__all__` declarations for consistency.
20 lines
554 B
Python
20 lines
554 B
Python
# app/services/__init__.py
|
|
from . import oauth_provider_service
|
|
from .auth_service import AuthService
|
|
from .oauth_service import OAuthService
|
|
from .organization_service import OrganizationService, organization_service
|
|
from .session_service import SessionService, session_service
|
|
from .user_service import UserService, user_service
|
|
|
|
__all__ = [
|
|
"AuthService",
|
|
"OAuthService",
|
|
"OrganizationService",
|
|
"SessionService",
|
|
"UserService",
|
|
"oauth_provider_service",
|
|
"organization_service",
|
|
"session_service",
|
|
"user_service",
|
|
]
|