old_01
This commit is contained in:
18
doners/Shop-bot/handlers/user/wallet.py
Normal file
18
doners/Shop-bot/handlers/user/wallet.py
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
from loader import dp
|
||||
from aiogram.dispatcher import FSMContext
|
||||
from aiogram.types import Message
|
||||
from filters import IsUser
|
||||
from .menu import balance
|
||||
|
||||
# test card ==> 1111 1111 1111 1026, 12/22, CVC 000
|
||||
|
||||
# shopId 506751
|
||||
|
||||
# shopArticleId 538350
|
||||
|
||||
|
||||
@dp.message_handler(IsUser(), text=balance)
|
||||
async def process_balance(message: Message, state: FSMContext):
|
||||
await message.answer('Ваш кошелек пуст! Чтобы его пополнить нужно...')
|
||||
|
||||
Reference in New Issue
Block a user