This commit is contained in:
cdle
2021-10-06 14:52:21 +08:00
parent ad376ffb68
commit d2c69e2b89
6 changed files with 46 additions and 1 deletions
+9
View File
@@ -110,6 +110,7 @@ type Sender struct {
Responses []interface{}
Wait chan []interface{}
uid int
goon bool
}
func (sender *Sender) GetContent() string {
@@ -208,3 +209,11 @@ func (sender *Sender) Finish() {
func (sender *Sender) GetUserName() string {
return ""
}
func (sender *Sender) Continue() {
sender.goon = true
}
func (sender *Sender) IsContinue() bool {
return sender.goon
}