mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-15 01:07:32 +00:00
7 lines
216 B
Go
7 lines
216 B
Go
//go:build release
|
|
|
|
package mock
|
|
|
|
// mockModeFromEnv always returns false in release builds.
|
|
// The PULSE_MOCK_MODE env var is ignored to prevent mock data in production.
|
|
func mockModeFromEnv() bool { return false }
|