mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-23 19:57:09 +00:00
8 lines
212 B
Go
8 lines
212 B
Go
//go:build release
|
|
|
|
package mockmode
|
|
|
|
// IsEnabled always returns false in release builds.
|
|
// The PULSE_MOCK_MODE env var is ignored to prevent mock behavior in production.
|
|
func IsEnabled() bool { return false }
|