shopbot/consumers/new_account.py

9 lines
159 B
Python
Raw Normal View History

2024-12-25 01:30:33 +00:00
from faststream.nats import NatsRouter
router = NatsRouter()
@router.subscriber("shop.new_account")
async def new_account_proceed(msg: int):
print(msg)