14 lines
341 B
Go
14 lines
341 B
Go
|
// +build !consulent
|
||
|
|
||
|
package agent
|
||
|
|
||
|
import (
|
||
|
"github.com/hashicorp/consul/agent/config"
|
||
|
)
|
||
|
|
||
|
// initEnterpriseBaseDeps is responsible for initializing the enterprise dependencies that
|
||
|
// will be utilized throughout the whole Consul Agent.
|
||
|
func initEnterpriseBaseDeps(d BaseDeps, _ *config.RuntimeConfig) (BaseDeps, error) {
|
||
|
return d, nil
|
||
|
}
|