mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-07 21:48:31 -05:00
12 lines
217 B
Go
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
|
|
}
|