2023-03-28 19:39:22 +01:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
2023-08-11 09:12:13 -04:00
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
2023-03-28 19:39:22 +01:00
|
|
|
|
2021-11-16 12:04:01 -06:00
|
|
|
//go:build !consulent
|
2021-10-23 13:19:51 -06:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package proxycfg
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/hashicorp/go-hclog"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (s *handlerMeshGateway) initializeEntWatches(_ context.Context) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-05-20 15:47:40 +01:00
|
|
|
func (s *handlerMeshGateway) handleEntUpdate(_ hclog.Logger, _ context.Context, _ UpdateEvent, _ *ConfigSnapshot) error {
|
2021-10-23 13:19:51 -06:00
|
|
|
return nil
|
|
|
|
}
|