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
+10
View File
@@ -26,6 +26,8 @@ type Sender interface {
Delete() error
Disappear(lifetime ...time.Duration)
Finish()
Continue()
IsContinue() bool
}
type Edit int
@@ -157,3 +159,11 @@ func (sender *Faker) Finish() {
func (sender *Faker) GetUserName() string {
return ""
}
func (sender *Faker) Continue() {
}
func (sender *Faker) IsContinue() bool {
return true
}