valera/commands/command.go

10 lines
128 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")
)