shopbot/consumers/new_account.py
2024-12-25 04:30:33 +03:00

9 lines
159 B
Python

from faststream.nats import NatsRouter
router = NatsRouter()
@router.subscriber("shop.new_account")
async def new_account_proceed(msg: int):
print(msg)