mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-11 03:11:50 +00:00
16 lines
262 B
Go
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(),
|
|
},
|
|
}
|
|
}
|