UNPKG
gogs-cli
Version:
latest (0.3.0)
0.3.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.2
0.1.1
Commandline interface for your Gogs needs
github.com/reewr/gogs-cli
reewr/gogs-cli
gogs-cli
/
commands
/
config.js
14 lines
(12 loc)
•
280 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
;
module
.
exports
= {
command
:
'config <command>'
, desc :
'Allow setting and getting Gogs CLI configuration options'
,
builder
:
(
yargs
) =>
{
return
yargs .
commandDir
(
'config-commands'
) .
demandCommand
() .
help
(); },
handler
:
() =>
{} };