You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bonzai/cmd/help.go

20 lines
297 B
Go

// Copyright 2022 Robert S. Muhlestein.
// SPDX-License-Identifier: Apache-2.0
package cmd
import (
"log"
"github.com/rwxrob/bonzai"
)
var Help = &bonzai.Cmd{
Name: `help`,
Aliases: []string{"h"},
Call: func(none ...string) error {
log.Println("would print help")
return nil
},
}