all-tg-bot/commands/command.go

10 lines
128 B
Go
Raw Normal View History

2022-04-03 10:19:32 +00:00
package commands
type Command string
const (
Start = Command("/start")
2022-04-03 10:35:07 +00:00
Help = Command("/help")
2022-04-03 10:19:32 +00:00
Ping = Command("/ping")
)