You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/proto/private/pbconfigentry/config_entry_ce.go

25 lines
630 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
//go:build !consulent
package pbconfigentry
import "github.com/hashicorp/consul/agent/structs"
func gwJWTRequirementToStructs(m *APIGatewayJWTRequirement) *structs.APIGatewayJWTRequirement {
return &structs.APIGatewayJWTRequirement{}
}
func gwJWTRequirementFromStructs(*structs.APIGatewayJWTRequirement) *APIGatewayJWTRequirement {
return &APIGatewayJWTRequirement{}
}
func routeJWTFilterToStructs(m *JWTFilter) *structs.JWTFilter {
return &structs.JWTFilter{}
}
func routeJWTFilterFromStructs(*structs.JWTFilter) *JWTFilter {
return &JWTFilter{}
}