Files
aptly/cmd/config.go
T
2017-07-04 14:45:08 +02:00

16 lines
262 B
Go

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