2023-03-11 09:00:25 +00:00
|
|
|
package commands
|
|
|
|
|
|
|
|
type Command string
|
|
|
|
|
|
|
|
const (
|
|
|
|
Start = Command("/start")
|
|
|
|
Help = Command("/help")
|
|
|
|
Ping = Command("/ping")
|
2023-03-11 11:30:12 +00:00
|
|
|
Go = Command("/go")
|
|
|
|
Stat = Command("/stat")
|
2023-03-19 20:01:09 +00:00
|
|
|
Eat = Command("/eat")
|
2023-04-05 18:18:25 +00:00
|
|
|
Pause = Command("/pause")
|
2023-03-11 09:00:25 +00:00
|
|
|
)
|