Spaces:
Runtime error
Runtime error
File size: 1,860 Bytes
808bf67 |
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 37 38 39 40 41 42 43 44 45 |
{
"pre-compiled signatures":
[
{
"name": "generate",
"help": "Generate Documentation from a given directory root",
"args_parse":
[
{"args": ["--api_key", "-k"], "kwargs": {"type": "str", "required": true, "help": "API key for techdocs"}},
{"args": ["--username", "-u"], "kwargs": {"type": "str", "required": true, "help": "Username for techdocs"}},
{"args": ["--password", "-p"], "kwargs": {"type": "str", "required": true, "help": "Password for techdocs"}},
{"args": ["--dir", "-d"], "kwargs": {"type": "str", "required": true, "help": "Root directory to be documented"}}
]
},
{
"name": "apikey",
"help": "Issue a new API key for techdocs",
"args_parse":
[
{"args": ["-username", "-u"], "kwargs": {"type": "str", "required": true, "help": "Username for techdocs"}},
{"args": ["-password", "-p"], "kwargs": {"type": "str", "required": true, "help": "Password for techdocs"}}
]
},
{
"name": "version",
"help": "Print the version of the techdocs CLI",
"args_parse": []
},
{
"name": "signup",
"help": "Sign up for a new techdocs account",
"args_parse":
[
{"args": ["-username", "-u"], "kwargs": {"type": "str", "required": true, "help": "Username for Techdocs"}},
{"args": ["-password", "-p"], "kwargs": {"type": "str", "required": true, "help": "Password for Techdocs"}},
{"args": ["-email", "-e"], "kwargs": {"type": "str", "required": true, "help": "Email for techdocs"}}
]
}
],
"dynamic signatures":
[
]
}
|