blob: 0cbc820b159c2f0b46a7ca9f3a399bde6893679d [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.
// This file was auto-generated by the vanadium vdl tool.
// Source: types.vdl
package server
import (
// VDL system imports
"v.io/v23/vdl"
// VDL user imports
"v.io/v23/security/access"
"v.io/v23/services/groups"
)
// 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 map[groups.BlessingPatternChunk]struct{}
}
func (groupData) __VDLReflect(struct {
Name string `vdl:"v.io/x/ref/services/groups/internal/server.groupData"`
}) {
}
func init() {
vdl.Register((*groupData)(nil))
}