Files
aptly/cmd/script.go
T
2014-08-16 13:54:46 +00:00

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(),
},
}
}