blob: ae8dd66c47ee2ae9345eacffaba272cf23e260e0 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package kvstore implements a simple key-value store used for
// testing the groups-based authorization.
package kvstore
import (
"v.io/v23/security/access"
)
type Store interface {
Get(key string) (string | error) {access.Read}
Set(key string, value string) error {access.Write}
}