feat: use postgres

This commit is contained in:
Ilia Denisov
2026-04-26 20:34:39 +02:00
committed by GitHub
parent 48b0056b49
commit fe829285a6
365 changed files with 29223 additions and 24049 deletions
@@ -0,0 +1,10 @@
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))
}