Andrew Privalov

Results 25 comments of Andrew Privalov

Yes, under the hood these functions use log.check. You can think of an API as syntactic sugar

@gdadev Hi. Do you have any news?)

@ryancox I think this issue still needs to be implemented. Do you have the desire and ability to make it happen?

According with section 3.1 of the documentation https://www.haproxy.org/download/1.9/doc/SPOE.txt, bool type has format: Type (4 bit) and Flag (4 bit). Maybe I should check it out if I misunderstood?

Thank you for such a detailed description. Can I close this issue?

You can use handler ``` func handler(ctx context.Context, b *bot.Bot, update *models.Update) { if update.Message != nil { b.SendMessage(ctx, &bot.SendMessageParams{ ChatID: update.Message.Chat.ID, Text: update.Message.Text, }) } } ``` Simple examples...

What actions are required for this support?

Thanks. You can use the `WithPrefix` option to determine your own prefix, which will be constant between the restarts of the application. This feature may solve your problem?

```go func handler(ctx context.Context, b *bot.Bot, update *models.Update) { if update.Message == nil { return } if update.Message.Text == "show" { kb := models.ReplyKeyboardMarkup{ Keyboard: [][]models.KeyboardButton{{models.KeyboardButton{Text: "hide"}}}, IsPersistent: false, ResizeKeyboard:...