1
0
mirror of https://github.com/Rudi9719/kbtui.git synced 2026-03-27 08:23:32 +00:00
Files
kbtui/types.go
Gregory Rudolph 3662c6e09d Cleanup
2019-10-03 08:40:09 -04:00

10 lines
398 B
Go

package main
// Command outlines a command
type Command struct {
Cmd []string // Any aliases that trigger this command
Description string // A short description of the command
Help string // The full help text explaining how to use the command
Exec func([]string) // A function that takes the command (arg[0]) and any arguments (arg[1:]) as input
}