mirror of
https://github.com/solero/houdini.git
synced 2025-07-02 09:40:06 +00:00
8 lines
215 B
Python
8 lines
215 B
Python
from houdini import handlers
|
|
from houdini.handlers import XTPacket
|
|
|
|
|
|
@handlers.handler(XTPacket('p', 'getdigcooldown'), pre_login=True)
|
|
async def handle_get_dig_cooldown(p):
|
|
await p.send_xt('getdigcooldown', 1)
|