dockviz/help.go

23 lines
295 B
Go
Raw Normal View History

2015-08-18 04:44:02 +02:00
package main
import "fmt"
type HelpCommand struct {
// nothing yet
}
var helpCommand HelpCommand
func (x *HelpCommand) Execute(args []string) error {
fmt.Println("stub help is here")
return nil
}
func init() {
parser.AddCommand("help",
"Help for this tool.",
"",
&helpCommand)
}