mirror of
https://github.com/bohd4nx/FragmentAPI.git
synced 2026-07-25 06:14:29 +00:00
9f11ccb3ee
- Moved PaymentMethod and other enums from models to enums.py for better organization. - Refactored imports in various files to reflect the new structure. - Created new model files for ads, anonymous numbers, giveaways, marketplace, purchases, and tonapi. - Removed the old models.py file to clean up the codebase. - Updated all relevant imports in the codebase to use the new model locations.
13 lines
463 B
Python
13 lines
463 B
Python
from pyfragment.domains.anonymous_numbers.number import get_login_code, terminate_sessions, toggle_login_codes
|
|
from pyfragment.domains.anonymous_numbers.service import AnonymousNumbersService
|
|
from pyfragment.domains.anonymous_numbers.models import LoginCodeResult, TerminateSessionsResult
|
|
|
|
__all__ = [
|
|
"AnonymousNumbersService",
|
|
"LoginCodeResult",
|
|
"TerminateSessionsResult",
|
|
"get_login_code",
|
|
"terminate_sessions",
|
|
"toggle_login_codes",
|
|
]
|