init commit

This commit is contained in:
2025-12-10 22:09:31 +09:00
commit b79adf1c69
361 changed files with 47414 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
"""Transaction-related handlers"""
from aiogram import Router
from aiogram.types import Message
router = Router()
@router.message()
async def transaction_menu(message: Message):
"""Handle transaction operations"""
pass
def register_transaction_handlers(dp):
"""Register transaction handlers"""
dp.include_router(router)