blob: 21972fa9ab01d45767a4a6746fe17675d6df0540 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright (c) 2021 Tailscale Inc & AUTHORS All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build race
package version
// IsRace reports whether the current binary was built with the Go
// race detector enabled.
func IsRace() bool { return true }
|