fix: add production build stub for mock integration

This commit is contained in:
Pulse Monitor
2025-08-27 13:48:06 +00:00
parent 019359ea6d
commit 8f677d21a8
+10
View File
@@ -0,0 +1,10 @@
// +build production
package monitoring
import "github.com/rcourtman/pulse-go-rewrite/internal/models"
// getMockState returns nil in production builds
func getMockState() *models.StateSnapshot {
return nil
}