Beispiel #1
0
func (r *Slugger) Serve(ctrl *telegram.Control, bot *tgbotapi.BotAPI, update tgbotapi.Update) {
	var call Call

	text := strings.TrimPrefix(update.Message.Text, methodPrefix)
	fill(&call.Args, text)
	fill(&call.Query, update.InlineQuery.Query)

	ctrl.NextWithValue(reflect.TypeOf(call), call)
	ctrl.Next()
}