mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 03:27:54 +00:00
27 lines
556 B
Go
27 lines
556 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !enterprise
|
|
|
|
package transit
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/hashicorp/vault/sdk/logical"
|
|
)
|
|
|
|
type entBackend struct{}
|
|
|
|
func (b *backend) initializeEnt(_ context.Context, _ *logical.InitializationRequest) error {
|
|
return nil
|
|
}
|
|
|
|
func (b *backend) invalidateEnt(_ context.Context, _ string) {}
|
|
|
|
func (b *backend) periodicFuncEnt(_ context.Context, _ *logical.Request) error { return nil }
|
|
|
|
func (b *backend) cleanupEnt(_ context.Context) {}
|
|
|
|
func (b *backend) setupEnt() {}
|