Files
mautrix-telegram/pkg/gotd/telegram/message/markup/force_reply.go
T
2025-06-27 20:03:37 -07:00

12 lines
284 B
Go

package markup
import "go.mau.fi/mautrix-telegram/pkg/gotd/tg"
// ForceReply creates markup to force the user to send a reply.
func ForceReply(singleUse, selective bool) tg.ReplyMarkupClass {
return &tg.ReplyKeyboardForceReply{
SingleUse: singleUse,
Selective: selective,
}
}