mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-08-24 21:17:31 +00:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
11 lines
210 B
Go
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)
|
|
}
|