valera/commands/command.go

13 lines
203 B
Go
Raw Normal View History

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-03-11 09:00:25 +00:00
)