Skip to content

Instantly share code, notes, and snippets.

@drahtzieher
drahtzieher / sessionstore.go
Created June 27, 2025 15:55
Nats Jetstream KV session store for SCS (with cbor encoder)
package sessionstore
import (
"context"
"fmt"
"time"
"github.com/fxamacker/cbor/v2"
"github.com/nats-io/nats.go/jetstream"
)