diff --git a/pkg/interact/reply.go b/pkg/interact/reply.go index 713162d3b..4efb9b2fb 100644 --- a/pkg/interact/reply.go +++ b/pkg/interact/reply.go @@ -46,6 +46,12 @@ type Reply interface { RemoveKeyboard() } +// KeyboardController is used when messenger supports keyboard controls +type KeyboardController interface { + // RemoveKeyboard hides the keyboard from the client user interface + RemoveKeyboard() +} + // ButtonReply can be used if your reply needs button user interface. type ButtonReply interface { // AddButton adds the button to the reply