mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-07 22:20:24 +00:00
16 lines
252 B
Go
16 lines
252 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/smira/commander"
|
|
)
|
|
|
|
func makeCmdScript() *commander.Command {
|
|
return &commander.Command{
|
|
UsageLine: "script",
|
|
Short: "run aptly scripts",
|
|
Subcommands: []*commander.Command{
|
|
makeCmdScriptRun(),
|
|
},
|
|
}
|
|
}
|