Files
valera/commands/command.go
T
VLADIMIR f1f3fb5db4
continuous-integration/drone/push Build is passing
add calories
2023-03-12 13:53:50 +07:00

13 lines
202 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")
)