blob: 49e18b3e1624df7cc44f7685a0e64a6e2798e0ed [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 server
import (
"v.io/v23/services/groups"
"v.io/v23/security/access"
)
// groupData represents the persistent state of a group. (The group name is
// persisted as the store entry key.)
type groupData struct {
Perms access.Permissions
Entries set[groups.BlessingPatternChunk]
}