Files
aptly/cmd/script.go
T
2014-08-16 10:17:44 +00:00

16 lines
253 B
Go

package cmd
import (
"github.com/smira/commander"
)
func makeCmdScript() *commander.Command {
return &commander.Command{
UsageLine: "script",
Short: "runs aptly scripts",
Subcommands: []*commander.Command{
makeCmdScriptRun(),
},
}
}