open-consul/agent/proxycfg/mesh_gateway_oss.go

19 lines
347 B
Go

//go:build !consulent
// +build !consulent
package proxycfg
import (
"context"
"github.com/hashicorp/go-hclog"
)
func (s *handlerMeshGateway) initializeEntWatches(_ context.Context) error {
return nil
}
func (s *handlerMeshGateway) handleEntUpdate(_ hclog.Logger, _ context.Context, _ UpdateEvent, _ *ConfigSnapshot) error {
return nil
}