- 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.
6 lines
107 B
Python
6 lines
107 B
Python
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
|
|
class DepositStorage(StatesGroup):
|
|
amount = State()
|