This commit is contained in:
shoopea 2019-05-11 11:18:50 +08:00
parent fbe5d028e5
commit cd2ee8d3b9

6
bot.go
View File

@ -44,7 +44,11 @@ func StartBot() {
b.Handle(tb.OnQuery, botQuery)
b.Handle(tb.OnText, botText)
b.Send("tiennou", "test")
u := td.User{
ID: 32173684,
}
b.Send(u, "test")
b.Start()
}