open-vault/command/server/config_util.go
2020-02-14 16:39:13 -08:00

19 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
}