mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
29 lines
672 B
JSON
29 lines
672 B
JSON
|
|
{
|
|
"call": [{
|
|
"title": "Call helloworld",
|
|
"description": "Call the helloworld service and get a message back",
|
|
"run_check": true,
|
|
"idempotent": true,
|
|
"request": {
|
|
"name": "John"
|
|
},
|
|
"response": {
|
|
"message": "Hello John"
|
|
}
|
|
}],
|
|
"stream": [{
|
|
"title": "Stream helloworld",
|
|
"description": "Streams responses from the server using websockets",
|
|
"run_check": true,
|
|
"idempotent": true,
|
|
"request": {
|
|
"name": "John",
|
|
"messages": 10
|
|
},
|
|
"response": {
|
|
"message": "Hello John"
|
|
}
|
|
}]
|
|
}
|