mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
12 lines
176 B
Go
12 lines
176 B
Go
|
|
package extern
|
||
|
|
|
||
|
|
import "context"
|
||
|
|
|
||
|
|
type Handler interface {
|
||
|
|
ReplyHandler
|
||
|
|
}
|
||
|
|
|
||
|
|
type ReplyHandler interface {
|
||
|
|
DeleteReply(ctx context.Context, adminId int64, rs []*Reply) error
|
||
|
|
}
|