15 lines
228 B
Go
15 lines
228 B
Go
|
// +build !consulent
|
||
|
|
||
|
package consul
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
hclog "github.com/hashicorp/go-hclog"
|
||
|
)
|
||
|
|
||
|
func newDefaultDepsEnterprise(t *testing.T, _ hclog.Logger, _ *Config) EnterpriseDeps {
|
||
|
t.Helper()
|
||
|
return EnterpriseDeps{}
|
||
|
}
|