vault/command/command_stubs_oss.go
Violet Hynes fd884ad1a0
Removal of go-testing-interface (CE changes) (#27578)
* Removal of go-testing-interface CE changes

* CE only fine

* Changelog

* Changelog
2024-07-04 11:09:41 -04:00

35 lines
758 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
//go:build !enterprise
package command
//go:generate go run github.com/hashicorp/vault/tools/stubmaker
import (
"github.com/hashicorp/cli"
"github.com/hashicorp/vault/command/server"
"github.com/hashicorp/vault/vault"
)
func entInitCommands(ui, serverCmdUi cli.Ui, runOpts *RunOptions, commands map[string]cli.CommandFactory) {
}
func entAdjustCoreConfig(config *server.Config, coreConfig *vault.CoreConfig) {
}
func entCheckStorageType(coreConfig *vault.CoreConfig) bool {
return true
}
func entGetFIPSInfoKey() string {
return ""
}
func entGetRequestLimiterStatus(coreConfig vault.CoreConfig) string {
return ""
}
func entExtendAddonHandlers(handlers *vaultHandlers) {}