mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
10 lines
283 B
Go
10 lines
283 B
Go
//go:build race
|
|
|
|
// Package israce reports if the Go race detector is enabled.
|
|
//
|
|
// From https://stackoverflow.com/questions/44944959/how-can-i-check-if-the-race-detector-is-enabled-at-runtime
|
|
package israce
|
|
|
|
// Enabled reports if the race detector is enabled.
|
|
const Enabled = true
|