bta-proxy/bta_proxy/packets/packet3chat.py

11 lines
184 B
Python

from typing import ClassVar
from .base import Packet
class Packet3Chat(Packet, packet_id=3):
FIELDS = [
('message', ('str', 1024)),
('encrypted', 'bool'),
]