bta-proxy/bta_proxy/packets/packet2handshake.py

10 lines
157 B
Python
Raw Normal View History

2023-08-24 15:29:57 +03:00
from typing import ClassVar
from .base import Packet
2023-08-24 17:40:23 +03:00
class Packet2Handshake(Packet, packet_id=2):
2023-08-24 15:29:57 +03:00
FIELDS = [
('username', ('str', 16)),
]