bta-proxy/bta_proxy/packets/packet3chat.py

12 lines
204 B
Python
Raw Normal View History

2023-08-24 15:29:57 +03:00
from typing import ClassVar
from .base import Packet
class Packet3Chat(Packet):
PACKET_ID: ClassVar[int] = 3
FIELDS = [
('message', ('str', 1024)),
('encrypted', 'bool'),
]