Files
galaxy-game/mail/internal/adapters/redisstate/errors.go
T
2026-04-17 18:39:16 +02:00

13 lines
416 B
Go

// Package redisstate defines the frozen Redis keyspace, strict JSON records,
// and low-level mutation helpers used by future Mail Service Redis adapters.
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")
)