Files
pulse/internal/mockmode/mockmode_dev.go
T
2026-04-10 12:33:57 +01:00

11 lines
226 B
Go

//go:build !release
package mockmode
import "github.com/rcourtman/pulse-go-rewrite/internal/mockruntime"
// IsEnabled reports whether Pulse is running in mock mode.
func IsEnabled() bool {
return mockruntime.IsEnabled()
}