mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 09:33:50 +00:00
9 lines
132 B
Go
9 lines
132 B
Go
package interact
|
|
|
|
type Reply interface {
|
|
Send(message string)
|
|
Message(message string)
|
|
AddButton(text string)
|
|
RemoveKeyboard()
|
|
}
|