Port some changes back to OSS (#8359)

This commit is contained in:
Brian Kassouf
2020-02-14 16:39:13 -08:00
committed by GitHub
parent f54fd9eefc
commit 317bf94c7a
12 changed files with 181 additions and 33 deletions

View File

@@ -1,13 +1,18 @@
// +build !enterprise
package server
import (
"github.com/hashicorp/hcl/hcl/ast"
)
var (
parseEntropy = parseEntropyOSS
)
type entConfig struct {
}
func parseEntropyOSS(result *Config, list *ast.ObjectList, blockName string) error {
func (ec *entConfig) parseConfig(list *ast.ObjectList) error {
return nil
}
func parseEntropy(result *Config, list *ast.ObjectList, blockName string) error {
return nil
}