blob: df8719825da6d3af9d24ad97dc43fbb9c5237bb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
"ECHO": {
"summary": "Returns the given string.",
"complexity": "O(1)",
"group": "connection",
"since": "1.0.0",
"arity": 2,
"function": "echoCommand",
"command_flags": [
"LOADING",
"STALE",
"FAST"
],
"acl_categories": [
"CONNECTION"
],
"reply_schema": {
"description": "The given string",
"type": "string"
},
"arguments": [
{
"name": "message",
"type": "string"
}
]
}
}
|