11 lines
202 B
Python
11 lines
202 B
Python
import logging
|
|
import struct
|
|
|
|
from ..network.enums import types as TYPE
|
|
from .. import glob
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
def handle(client: "Client", data: bytes) -> bytes:
|
|
|
|
return b"" |