Files
bouncer/internal/store/redis/observable.go
William Petit 80a1b48966
Some checks are pending
Cadoles/bouncer/pipeline/pr-master This commit looks good
Cadoles/bouncer/pipeline/head Build started...
Cadoles/bouncer/pipeline/pr-develop Build started...
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
)