2020-02-15 00:39:13 +00:00
|
|
|
// +build !enterprise
|
|
|
|
|
2019-10-17 17:33:00 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/hcl/hcl/ast"
|
|
|
|
)
|
|
|
|
|
2020-02-15 00:39:13 +00:00
|
|
|
type entConfig struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ec *entConfig) parseConfig(list *ast.ObjectList) error {
|
|
|
|
return nil
|
|
|
|
}
|
2020-10-29 23:47:34 +00:00
|
|
|
|
|
|
|
func (ec entConfig) Merge(ec2 entConfig) entConfig {
|
|
|
|
result := entConfig{}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ec entConfig) Sanitized() map[string]interface{} {
|
|
|
|
return nil
|
|
|
|
}
|