mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-08 07:37:01 +02:00
14 lines
204 B
Go
14 lines
204 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
|
|
}
|