Files
go-common/app/service/main/antispam/extern/mock.go
2019-04-22 18:49:16 +08:00

12 lines
217 B
Go

package extern
import "context"
type MockExternHandler struct {
ErrDeleteReply error
}
func (mf *MockExternHandler) DeleteReply(ctx context.Context, adminID int64, ks []*Reply) error {
return mf.ErrDeleteReply
}