Files
bouncer/internal/store/redis/observable.go
William Petit 80a1b48966
All checks were successful
Cadoles/bouncer/pipeline/pr-master This commit looks good
feat: observe changes in repository to automatically clear cache
2025-08-13 18:20:58 +02:00

10 lines
125 B
Go

package redis
type ChangeOperation int
const (
CreateOperation ChangeOperation = iota
UpdateOperation
DeleteOperation
)