mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-06-05 05:20:34 +00:00
16 lines
263 B
Go
16 lines
263 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(),
|
|
},
|
|
}
|
|
}
|