暂存一下,防止丢失

This commit is contained in:
2026-07-24 16:07:18 +08:00
parent 5d6e23f1a5
commit a18ed8bc8d
180 changed files with 13597 additions and 1986 deletions

View File

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