From 891af0e573fe817211cb820bf8ef90a5b5d94fbc Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Fri, 29 Aug 2025 16:19:13 +0000 Subject: [PATCH] fix: remove conflicting stub file --- internal/mock/stub.go | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 internal/mock/stub.go diff --git a/internal/mock/stub.go b/internal/mock/stub.go deleted file mode 100644 index 8f9ba7154..000000000 --- a/internal/mock/stub.go +++ /dev/null @@ -1,15 +0,0 @@ -// +build !mock - -package mock - -import "github.com/rcourtman/pulse-go-rewrite/internal/models" - -// IsMockEnabled returns false in production builds -func IsMockEnabled() bool { - return false -} - -// GetMockState returns empty state in production builds -func GetMockState() models.StateSnapshot { - return models.StateSnapshot{} -}