enable init command

This commit is contained in:
Mitchell Hashimoto 2014-09-27 12:31:38 -07:00
parent f760c14332
commit fe4f53eb5b
2 changed files with 10 additions and 4 deletions

View File

@ -52,6 +52,12 @@ func init() {
}, nil
},
"init": func() (cli.Command, error) {
return &command.InitCommand{
Meta: meta,
}, nil
},
"output": func() (cli.Command, error) {
return &command.OutputCommand{
Meta: meta,

View File

@ -59,14 +59,14 @@
<a href="/docs/commands/get.html">get</a>
</li>
<li<%= sidebar_current("docs-commands-init") %>>
<a href="/docs/commands/init.html">init</a>
</li>
<li<%= sidebar_current("docs-commands-graph") %>>
<a href="/docs/commands/graph.html">graph</a>
</li>
<li<%= sidebar_current("docs-commands-init") %>>
<a href="/docs/commands/init.html">init</a>
</li>
<li<%= sidebar_current("docs-commands-output") %>>
<a href="/docs/commands/output.html">output</a>
</li>