Files
showbridge-go/config.json
Joel Wetzell c6fbf3e427 add udp-client
2025-11-19 21:42:43 -06:00

27 lines
373 B
JSON

{
"modules": [
{
"id": "tcp",
"type": "net.tcp.server",
"params": {
"port": 8000,
"framing": "LF"
}
},
{
"id": "udp",
"type": "net.udp.client",
"params": {
"host": "127.0.0.1",
"port": 8888
}
}
],
"routes": [
{
"input": "tcp",
"output": "udp"
}
]
}