Files
galaxy-game/lobby/internal/adapters/redisstate/keyspace_test_helpers_test.go
T
2026-04-26 20:34:39 +02:00

11 lines
330 B
Go

package redisstate_test
import "encoding/base64"
// base64URL is the test helper that mirrors the encodeKeyComponent function
// inside Keyspace. Per-store tests use it to assert the exact Redis key
// shape the adapter writes.
func base64URL(value string) string {
return base64.RawURLEncoding.EncodeToString([]byte(value))
}