Files
junhong_cmp_fiber/internal/application/notification/recipient.go
2026-07-24 16:07:18 +08:00

9 lines
240 B
Go

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