9 lines
240 B
Go
9 lines
240 B
Go
package notification
|
|
|
|
import "context"
|
|
|
|
// DynamicRecipientResolver 定义后台通知动态接收人解析 Port。
|
|
type DynamicRecipientResolver interface {
|
|
Resolve(ctx context.Context, targetKind string, targetID uint) ([]uint, error)
|
|
}
|