mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-24 20:21:09 +01:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
34 lines
753 B
Go
34 lines
753 B
Go
// Copyright IBM Corp. 2016, 2025
|
|
// 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 entCheckRequestLimiter(_cmd *ServerCommand, _config *server.Config) {
|
|
}
|
|
|
|
func entExtendAddonHandlers(handlers *vaultHandlers) {}
|