| // 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. |
| "v.io/v23/security/access" |
| // serviceData represents the persistent state of a Service. |
| type serviceData struct { |
| Version uint64 // covers the fields below |
| // appData represents the persistent state of an App. |
| Version uint64 // covers the fields below |
| // dbInfo contains information about one database for an App. |
| // TODO(sadovsky): Track NoSQL vs. SQL. |
| // Select fields from nosql.DatabaseOptions, needed in order to open storage |
| RootDir string // interpreted by storage engine |
| Engine string // name of storage engine, e.g. "leveldb" |