mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-11 05:26:35 +00:00
13 lines
180 B
Plaintext
13 lines
180 B
Plaintext
// +build fips
|
|
|
|
package main
|
|
|
|
import (
|
|
_ "crypto/tls/fipsonly"
|
|
"github.com/cloudflare/cloudflared/cmd/cloudflared/tunnel"
|
|
)
|
|
|
|
func init () {
|
|
tunnel.FipsEnabled = true
|
|
}
|