enable init command
This commit is contained in:
parent
f760c14332
commit
fe4f53eb5b
|
@ -52,6 +52,12 @@ func init() {
|
||||||
}, nil
|
}, nil
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"init": func() (cli.Command, error) {
|
||||||
|
return &command.InitCommand{
|
||||||
|
Meta: meta,
|
||||||
|
}, nil
|
||||||
|
},
|
||||||
|
|
||||||
"output": func() (cli.Command, error) {
|
"output": func() (cli.Command, error) {
|
||||||
return &command.OutputCommand{
|
return &command.OutputCommand{
|
||||||
Meta: meta,
|
Meta: meta,
|
||||||
|
|
|
@ -59,14 +59,14 @@
|
||||||
<a href="/docs/commands/get.html">get</a>
|
<a href="/docs/commands/get.html">get</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li<%= sidebar_current("docs-commands-init") %>>
|
|
||||||
<a href="/docs/commands/init.html">init</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li<%= sidebar_current("docs-commands-graph") %>>
|
<li<%= sidebar_current("docs-commands-graph") %>>
|
||||||
<a href="/docs/commands/graph.html">graph</a>
|
<a href="/docs/commands/graph.html">graph</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li<%= sidebar_current("docs-commands-init") %>>
|
||||||
|
<a href="/docs/commands/init.html">init</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li<%= sidebar_current("docs-commands-output") %>>
|
<li<%= sidebar_current("docs-commands-output") %>>
|
||||||
<a href="/docs/commands/output.html">output</a>
|
<a href="/docs/commands/output.html">output</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Reference in New Issue