consul/proto/private/pbconfigentry/config_entry_oss.go

18 lines
466 B
Go
Raw Normal View History

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