mirror of
https://github.com/slackhq/nebula.git
synced 2025-11-08 19:53:59 +01:00
This adds a few build targets to compile with `GOEXPERIMENT=boringcrypto`: - `bin-boringcrypto` - `release-boringcrypto` It also adds a field to the intial start up log indicating if boringcrypto is enabled in the binary.
7 lines
115 B
Go
7 lines
115 B
Go
//go:build !boringcrypto
|
|
// +build !boringcrypto
|
|
|
|
package nebula
|
|
|
|
var boringEnabled = func() bool { return false }
|