Files
epusdt2/src/telegram/command.go
T
Ashang 20c576b9bc init
2022-04-04 16:01:36 +08:00

15 lines
169 B
Go

package telegram
import tb "gopkg.in/telebot.v3"
const (
START_CMD = "/start"
)
var Cmds = []tb.Command{
{
Text: START_CMD,
Description: "开始",
},
}