-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli.yaml
36 lines (36 loc) · 872 Bytes
/
cli.yaml
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
29
30
31
32
33
34
35
36
---
name: kvs
version: 0.1.1
author: Kartik Sharma <[email protected]>
about: The keyvalue store stores values in-memory and offers a cmd client
args:
- verbose:
short: v
multiple_occurrences: true
about: Sets the level of verbosity
subcommands:
- set:
about: Set the value of a string key to a string
args:
- KEY:
about: The key to use
required: true
index: 1
- VALUE:
about: The value to use
required: true
index: 2
- get:
about: Get the string value of a given string key
args:
- KEY:
about: The key to use
required: true
index: 1
- rm:
about: Remove a given key
args:
- KEY:
about: The key to use
required: true
index: 1