Files
vault/vault/logical_system_stubs_oss.go
Christopher Swenson e7ada1e35c Add stub enterprise logical system backend and init (#26712)
This is used so that Enterprise code can do
additional initialization and store additional
state in the logical `SystemBackend`.
2024-05-02 08:46:50 -07:00

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() {}