mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-04-26 21:05:30 +00:00
27 lines
373 B
JSON
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"
|
|
}
|
|
]
|
|
}
|