Config command created - config show started

This commit is contained in:
Simon Aquino
2014-08-04 00:12:09 +00:00
parent 972e8c1373
commit 192152b215
3 changed files with 50 additions and 2 deletions

15
cmd/config.go Normal file
View File

@@ -0,0 +1,15 @@
package cmd
import (
"github.com/smira/commander"
)
func makeCmdConfig() *commander.Command {
return &commander.Command{
UsageLine: "config",
Short: "manage aptly configuration",
Subcommands: []*commander.Command{
makeCmdConfigShow(),
},
}
}