mirror of https://github.com/status-im/consul.git
17 lines
298 B
Go
17 lines
298 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !consulent
|
|
|
|
package proxycfg
|
|
|
|
import "context"
|
|
|
|
func watchJWTProviders(cxt context.Context, h *handlerAPIGateway) error {
|
|
return nil
|
|
}
|
|
|
|
func setJWTProvider(u UpdateEvent, snap *ConfigSnapshot) error {
|
|
return nil
|
|
}
|