Files
pocket-id/backend/internal/service/scim_sync.go
Alessandro (Ale) Segala 8c095afd78 refactor: migrate SCIM sync to actor + add tests (#1680)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
2026-08-18 21:54:06 +02:00

11 lines
210 B
Go

package service
import (
"context"
)
// ScimSyncScheduler schedules a cluster-wide SCIM synchronization after application data changes
type ScimSyncScheduler interface {
ScheduleSync(ctx context.Context)
}