All checks were successful
Cadoles/bouncer/pipeline/pr-master This commit looks good
10 lines
125 B
Go
10 lines
125 B
Go
package redis
|
|
|
|
type ChangeOperation int
|
|
|
|
const (
|
|
CreateOperation ChangeOperation = iota
|
|
UpdateOperation
|
|
DeleteOperation
|
|
)
|