blob: 7f53561d6b7be2bca13b13b3b47e5d40d8feb0d6 [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.
// +build ignore
package server
import (
"v.io/v23/security/access"
)
// serviceData represents the persistent state of a Service.
type serviceData struct {
Universes set[string]
Version uint64 // covers the fields below
Acl access.Permissions
}
// universeData represents the persistent state of a Universe.
type universeData struct {
Name string
Databases set[string]
Version uint64 // covers the fields below
Acl access.Permissions
}
// databaseData represents the persistent state of a Database.
type databaseData struct {
Name string
Version uint64 // covers the fields below
Acl access.Permissions
}