open-vault/command/server/config_util.go
Lexman c86fe212c0
oss changes for entropy augmentation feature (#7670)
* oss changes for entropy augmentation feature

* fix oss command/server/config tests

* update go.sum

* fix logical_system and http/ tests

* adds vendored files

* removes unused variable
2019-10-17 10:33:00 -07:00

14 lines
203 B
Go

package server
import (
"github.com/hashicorp/hcl/hcl/ast"
)
var(
parseEntropy = parseEntropyOSS
)
func parseEntropyOSS(result *Config, list *ast.ObjectList, blockName string) error {
return nil
}