2022-01-05 18:02:03 +00:00
|
|
|
//go:build !enterprise
|
2020-05-14 13:19:27 +00:00
|
|
|
|
|
|
|
package configutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/hcl/hcl/ast"
|
|
|
|
)
|
|
|
|
|
2021-04-08 16:43:39 +00:00
|
|
|
type EntSharedConfig struct{}
|
2020-05-14 13:19:27 +00:00
|
|
|
|
|
|
|
func (ec *EntSharedConfig) ParseConfig(list *ast.ObjectList) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func ParseEntropy(result *SharedConfig, list *ast.ObjectList, blockName string) error {
|
|
|
|
return nil
|
|
|
|
}
|