2023-08-10 21:23:42 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
|
|
|
//go:build !consulent
|
|
|
|
// +build !consulent
|
|
|
|
|
2023-08-10 19:49:51 +00:00
|
|
|
package structs
|
|
|
|
|
|
|
|
// DeepCopy generates a deep copy of *APIGatewayJWTRequirement
|
|
|
|
func (o *APIGatewayJWTRequirement) DeepCopy() *APIGatewayJWTRequirement {
|
|
|
|
return new(APIGatewayJWTRequirement)
|
|
|
|
}
|
2023-08-10 21:23:42 +00:00
|
|
|
|
|
|
|
// DeepCopy generates a deep copy of *JWTFilter
|
|
|
|
func (o *JWTFilter) DeepCopy() *JWTFilter {
|
|
|
|
return new(JWTFilter)
|
|
|
|
}
|