mock.go 217 B

1234567891011
  1. package extern
  2. import "context"
  3. type MockExternHandler struct {
  4. ErrDeleteReply error
  5. }
  6. func (mf *MockExternHandler) DeleteReply(ctx context.Context, adminID int64, ks []*Reply) error {
  7. return mf.ErrDeleteReply
  8. }