mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-06 16:16:26 +00:00
10 lines
226 B
Go
10 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()
|
|
}
|