mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-07 08:57:12 +00:00
9 lines
317 B
Go
9 lines
317 B
Go
//go:build release
|
|
|
|
package mockmode
|
|
|
|
import "github.com/rcourtman/pulse-go-rewrite/internal/mockruntime"
|
|
|
|
// IsEnabled reports the canonical in-process mock runtime state. Release builds
|
|
// still fail closed because only entitled demo runtimes may enable it.
|
|
func IsEnabled() bool { return mockruntime.IsEnabled() }
|