mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-12 03:21:33 +00:00
17 lines
288 B
Go
17 lines
288 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/smira/commander"
|
|
)
|
|
|
|
func makeCmdPackage() *commander.Command {
|
|
return &commander.Command{
|
|
UsageLine: "package",
|
|
Short: "operations on packages",
|
|
Subcommands: []*commander.Command{
|
|
makeCmdPackageSearch(),
|
|
makeCmdPackageShow(),
|
|
},
|
|
}
|
|
}
|