add all missing go.mod for debugging tools (#18049)

This commit is contained in:
Harshavardhana
2023-09-18 13:47:03 -07:00
committed by GitHub
parent fd421ddd6f
commit 8c4561b8da
10 changed files with 103 additions and 9 deletions

6
docs/debugging/build.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
export CGO_ENABLED=0
for dir in docs/debugging/*/; do
go build -C ${dir} -v
done