Files
Alma/command/command.go

9 lines
101 B
Go

package command
type Command interface {
GetHelpText()
GetName() string
Run(args []string)
}