moto-flash-data/commands/help.go
2025-01-20 13:10:35 +01:00

13 lines
216 B
Go

package commands
import (
"errors"
)
var ErrShowHelpMessage = errors.New("help command invoked")
type HelpCommand struct{}
func (command *HelpCommand) Execute(args []string) error {
return ErrShowHelpMessage
}