mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 19:17:58 +00:00
* add plugin catalog's entValidate() and setInternal() oss stubs * create plugin register command constructor oss stub * create EntPluginRunner oss stub * add validateSHA256() oss stub to validate plugin catalog update input
15 lines
282 B
Go
15 lines
282 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !enterprise
|
|
|
|
package command
|
|
|
|
import "github.com/hashicorp/cli"
|
|
|
|
func NewPluginRegisterCommand(baseCommand *BaseCommand) cli.Command {
|
|
return &PluginRegisterCommand{
|
|
BaseCommand: baseCommand,
|
|
}
|
|
}
|