aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/gocapturedrefrace/main.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/cmd/gocapturedrefrace/main.go b/cmd/gocapturedrefrace/main.go
new file mode 100644
index 0000000..d637a38
--- /dev/null
+++ b/cmd/gocapturedrefrace/main.go
@@ -0,0 +1,10 @@
+package main
+
+import (
+ "git.teddywing.com/gocapturedrefrace"
+ "golang.org/x/tools/go/analysis/singlechecker"
+)
+
+func main() {
+ singlechecker.Main(gocapturedrefrace.Analyzer)
+}