14 lines
241 B
Go
14 lines
241 B
Go
|
// +build !consulent
|
||
|
|
||
|
package testauth
|
||
|
|
||
|
import (
|
||
|
"github.com/hashicorp/consul/agent/structs"
|
||
|
)
|
||
|
|
||
|
type enterpriseConfig struct{}
|
||
|
|
||
|
func (v *Validator) testAuthEntMetaFromFields(fields map[string]string) *structs.EnterpriseMeta {
|
||
|
return nil
|
||
|
}
|