All checks were successful
continuous-integration/drone/push Build is passing
13 lines
203 B
Go
13 lines
203 B
Go
package commands
|
|
|
|
type Command string
|
|
|
|
const (
|
|
Start = Command("/start")
|
|
Help = Command("/help")
|
|
Ping = Command("/ping")
|
|
Go = Command("/go")
|
|
Stat = Command("/stat")
|
|
Eat = Command("/eat")
|
|
)
|