mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 11:11:10 -05:00
12 lines
361 B
Python
12 lines
361 B
Python
"""
|
|
Accounts Services Package
|
|
|
|
This package contains business logic services for account management,
|
|
including social provider management, user authentication, and profile services.
|
|
"""
|
|
|
|
from .social_provider_service import SocialProviderService
|
|
from .user_deletion_service import UserDeletionService
|
|
|
|
__all__ = ['SocialProviderService', 'UserDeletionService']
|