- Implemented SubscriptionRepository with methods to get, create, and update subscriptions. - Added BalanceTXRepository for creating and retrieving balance transactions. - Introduced a test script for simulating Pally webhook for local testing.
22 lines
589 B
Python
22 lines
589 B
Python
from .ads import router as ads_router
|
|
from .billing import router as billing_router
|
|
from .buy import router as buy_router
|
|
from .common import router as common_router
|
|
from .deposit import router as deposit_router
|
|
from .menus import router as menus_router
|
|
from .prehandling import router as prehandling_router
|
|
from .referals import router as referal_router
|
|
from .support import router as support_router
|
|
|
|
routers = [
|
|
prehandling_router,
|
|
referal_router,
|
|
billing_router,
|
|
deposit_router,
|
|
menus_router,
|
|
ads_router,
|
|
support_router,
|
|
buy_router,
|
|
common_router,
|
|
]
|