mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-11 04:06:36 +00:00
10 lines
143 B
Go
10 lines
143 B
Go
package connection
|
|
|
|
const (
|
|
FeatureSerializedHeaders = "serialized_headers"
|
|
)
|
|
|
|
var SupportedFeatures = []string{
|
|
FeatureSerializedHeaders,
|
|
}
|