delete: send_ws.py — does not serve heartbeat/harness/portal (#548)
Some checks failed
Deploy Nexus / deploy (push) Has been cancelled

This commit is contained in:
2026-03-26 16:42:56 +00:00
parent 588c32d890
commit cb70a6904b

View File

@@ -1,11 +0,0 @@
import asyncio
import websockets
import json
import sys
async def send_msg(msg):
async with websockets.connect('ws://localhost:8765') as ws:
await ws.send(json.dumps({'type':'chat_message','content':msg,'username':'antigravity'}))
if __name__ == "__main__":
asyncio.run(send_msg(sys.argv[1]))