We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3af09bd commit b441474Copy full SHA for b441474
cli/src/index.ts
@@ -14,13 +14,13 @@ const args = yargs(Deno.args)
14
.option("get", {
15
alias: "g",
16
description:
17
- "Get a value for a given key: `<token> <cacheId> <jsonString>`",
+ 'Get value for given key. Expects a space delimited string after command: `"<token> <cacheId> <jsonString>"`',
18
string: true,
19
})
20
.option("delete", {
21
alias: "d",
22
23
- "Deletes a value for a given key: `<token> <cacheId> <jsonString>`",
+ 'Deletes a value for a given key. Expects a space delimited string after command: `"<token> <cacheId> <jsonString>"`',
24
25
}))
26
.command(
0 commit comments