royalcat
e9df8925d1
Some checks failed
docker / build-docker (linux/amd64) (push) Failing after 18s
docker / build-docker (linux/386) (push) Successful in 1m57s
docker / build-docker (linux/arm64) (push) Successful in 7m22s
docker / build-docker (linux/arm/v7) (push) Successful in 7m53s
docker / build-docker (linux/arm64/v8) (push) Failing after 3h2m18s
24 lines
430 B
Go
24 lines
430 B
Go
package kvsingle
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/royalcat/kv"
|
|
)
|
|
|
|
type Value[K, V any] struct {
|
|
Key K
|
|
db kv.Store[K, V]
|
|
}
|
|
|
|
func New[K, V any](db kv.Store[K, V], key K) *Value[K, V] {
|
|
return &Value[K, V]{Key: key, db: db}
|
|
}
|
|
|
|
func (s *Value[K, V]) Get(ctx context.Context) (V, bool, error) {
|
|
return s.db.Get(ctx, s.Key)
|
|
}
|
|
|
|
func (s *Value[K, V]) Set(ctx context.Context, value V) error {
|
|
return s.db.Set(ctx, s.Key, value)
|
|
}
|