package commands
type Command string
const (
Start = Command("/start")
Help = Command("/help")
Ping = Command("/ping")
)