bbgo_origin/pkg/interact/reply.go

9 lines
132 B
Go
Raw Normal View History

2022-01-14 03:43:27 +00:00
package interact
type Reply interface {
2022-01-14 18:52:46 +00:00
Send(message string)
2022-01-14 03:43:27 +00:00
Message(message string)
AddButton(text string)
RemoveKeyboard()
}