Files
vault/builtin/logical/transit/backend_ce.go
2024-04-22 13:19:04 -04:00

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