mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
7 lines
159 B
Python
7 lines
159 B
Python
"""Phase 21 — python-socketio benign control."""
|
|
_NYX_ADAPTER_MARKER = "import socketio"
|
|
|
|
|
|
def message(sid, data):
|
|
_ = (sid, data)
|
|
return "accepted"
|