mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-12 03:21:33 +00:00
18 lines
350 B
Go
18 lines
350 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/gonuts/commander"
|
|
"github.com/gonuts/flag"
|
|
)
|
|
|
|
func makeCmdRepo() *commander.Command {
|
|
return &commander.Command{
|
|
UsageLine: "repo",
|
|
Short: "manage local package repositories",
|
|
Subcommands: []*commander.Command{
|
|
makeCmdRepoCreate(),
|
|
},
|
|
Flag: *flag.NewFlagSet("aptly-repo", flag.ExitOnError),
|
|
}
|
|
}
|