mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-05 14:54:29 -04:00
18 lines
288 B
Go
18 lines
288 B
Go
// +build !enterprise
|
|
|
|
package server
|
|
|
|
import (
|
|
"github.com/hashicorp/hcl/hcl/ast"
|
|
)
|
|
|
|
type entConfig struct {
|
|
}
|
|
|
|
func (ec *entConfig) parseConfig(list *ast.ObjectList) error {
|
|
return nil
|
|
}
|
|
|
|
func parseEntropy(result *Config, list *ast.ObjectList, blockName string) error {
|
|
return nil
|
|
}
|