mirror of https://github.com/hashicorp/consul
18 lines
466 B
Go
18 lines
466 B
Go
|
// 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{}
|
||
|
}
|