open-vault/vault/router_access.go

15 lines
344 B
Go
Raw Normal View History

2017-10-23 19:35:28 +00:00
package vault
// RouterAccess provides access into some things necessary for testing
type RouterAccess struct {
c *Core
}
func NewRouterAccess(c *Core) *RouterAccess {
return &RouterAccess{c: c}
}
func (r *RouterAccess) StoragePrefixByAPIPath(path string) (string, string, bool) {
return r.c.router.MatchingStoragePrefixByAPIPath(path)
}