bilibili-backup/app/service/main/antispam/extern/mock.go

12 lines
217 B
Go
Raw Normal View History

2019-04-22 10:59:20 +08:00
package extern
import "context"
type MockExternHandler struct {
ErrDeleteReply error
}
func (mf *MockExternHandler) DeleteReply(ctx context.Context, adminID int64, ks []*Reply) error {
return mf.ErrDeleteReply
}