open-vault/command/server/config_util.go
Brian Kassouf 303c2aee7c
Run a more strict formatter over the code (#11312)
* Update tooling

* Run gofumpt

* go mod vendor
2021-04-08 09:43:39 -07:00

23 lines
355 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 (ec entConfig) Merge(ec2 entConfig) entConfig {
result := entConfig{}
return result
}
func (ec entConfig) Sanitized() map[string]interface{} {
return nil
}