mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-08-31 08:11:27 +02:00
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)
|
|
}
|