blob: 7a87916186923eda3ff6bdd411429dd3b9d7ccf5 [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 nosql
import (
"v.io/syncbase/x/ref/services/syncbase/server/util"
"v.io/v23/security/access"
)
var (
_ util.Permser = (*databaseData)(nil)
_ util.Permser = (*tableData)(nil)
)
func (data *databaseData) GetPerms() access.Permissions {
return data.Perms
}
func (data *tableData) GetPerms() access.Permissions {
return data.Perms
}