add /start and /ping commands

This commit is contained in:
2022-04-03 17:19:32 +07:00
parent 7078778d39
commit de70ca6e91
2 changed files with 18 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
package commands
type Command string
const (
Start = Command("/start")
Ping = Command("/ping")
)