dockviz/help.go

23 lines
295 B
Go
Raw Normal View History

2015-08-17 19:44:02 -07: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)
}