aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/echo.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/echo.json')
-rw-r--r--examples/redis-unstable/src/commands/echo.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/examples/redis-unstable/src/commands/echo.json b/examples/redis-unstable/src/commands/echo.json
new file mode 100644
index 0000000..df87198
--- /dev/null
+++ b/examples/redis-unstable/src/commands/echo.json
@@ -0,0 +1,28 @@
1{
2 "ECHO": {
3 "summary": "Returns the given string.",
4 "complexity": "O(1)",
5 "group": "connection",
6 "since": "1.0.0",
7 "arity": 2,
8 "function": "echoCommand",
9 "command_flags": [
10 "LOADING",
11 "STALE",
12 "FAST"
13 ],
14 "acl_categories": [
15 "CONNECTION"
16 ],
17 "reply_schema": {
18 "description": "The given string",
19 "type": "string"
20 },
21 "arguments": [
22 {
23 "name": "message",
24 "type": "string"
25 }
26 ]
27 }
28}