Move plugins to api/v0.1.1

This commit is contained in:
Jeffrey Regan
2019-10-24 16:26:26 -07:00
parent 4cf6630fc0
commit 6e2335ec3d
51 changed files with 1945 additions and 281 deletions

10
hacks/doGoMod.sh Executable file
View File

@@ -0,0 +1,10 @@
# Usage: From repo root:
# ./hacks/doGoMod.sh tidy
# ./hacks/doGoMod.sh verify
operation=$1
for f in $(find ./ -name 'go.mod'); do
echo $f
d=$(dirname "$f")
(cd $d; go mod $operation)
done