Files
galaxy-game/notification/internal/adapters/redisstate/errors.go
T
2026-04-22 08:49:45 +02:00

11 lines
260 B
Go

package redisstate
import "errors"
var (
// ErrConflict reports that a Redis mutation could not be applied because
// one of the watched or newly created keys already existed or changed
// concurrently.
ErrConflict = errors.New("redis state conflict")
)