summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/types/types.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/types/types.go b/common/types/types.go
index cee497bf4..c36c51b3e 100644
--- a/common/types/types.go
+++ b/common/types/types.go
@@ -17,6 +17,7 @@ package types
import (
"fmt"
"reflect"
+ "sync/atomic"
"github.com/spf13/cast"
)
@@ -90,3 +91,6 @@ func IsNil(v any) bool {
type DevMarker interface {
DevOnly()
}
+
+// This is only used for debugging purposes.
+var InvocationCounter atomic.Int64