mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-07 23:27:01 +02:00
15 lines
191 B
Go
15 lines
191 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
|
|
}
|