9 lines
101 B
Go
9 lines
101 B
Go
package command
|
|
|
|
type Command interface {
|
|
GetHelpText()
|
|
GetName() string
|
|
Run(args []string)
|
|
}
|
|
|