mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-11 02:55:51 +00:00
11 lines
226 B
Go
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()
|
|
}
|