consul/agent/proxycfg/api_gateway_ce.go
John Maguire 59ab57f350
NET-5147: Added placeholder structs for JWT functionality (#18575)
* Added placeholder structs for JWT functionality

* Added watches for CE vs ENT

* Add license header

* Undo plumbing work

* Add context arg
2023-08-24 15:07:14 -04:00

18 lines
319 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
//go:build !consulent
// +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
}