test
This commit is contained in:
parent
98ce6a06e4
commit
da7a3ddc7b
12
bot.go
12
bot.go
@ -48,3 +48,15 @@ func botQuery(q *tb.Query) {
|
|||||||
func botText(m *tb.Message) {
|
func botText(m *tb.Message) {
|
||||||
PrintText(m)
|
PrintText(m)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func sendChat(chatID int64, text string) {
|
||||||
|
opt := tb.SendOptions{
|
||||||
|
ParseMode: tb.ModeDefault,
|
||||||
|
}
|
||||||
|
|
||||||
|
ch := tb.Chat{
|
||||||
|
ID: chatID,
|
||||||
|
}
|
||||||
|
_, err := bot.Send(&ch, c.Text, &opt)
|
||||||
|
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user