mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2026-01-08 21:21:32 +00:00
This is used so that Enterprise code can do additional initialization and store additional state in the logical `SystemBackend`.
17 lines
308 B
Go
17 lines
308 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !enterprise
|
|
|
|
package vault
|
|
|
|
//go:generate go run github.com/hashicorp/vault/tools/stubmaker
|
|
|
|
type entSystemBackend struct{}
|
|
|
|
func entUnauthenticatedPaths() []string {
|
|
return []string{}
|
|
}
|
|
|
|
func (s *SystemBackend) entInit() {}
|