Updated example plugins

- Updated example plugins
- Added debugger
- Removed some trash files
This commit is contained in:
Toby Chui
2025-02-28 22:03:08 +08:00
parent 3993ac954c
commit 214b69b0b8
16 changed files with 453 additions and 4 deletions

View File

@ -0,0 +1,22 @@
#!/bin/bash
# Iterate over all directories in the current directory
for dir in */; do
if [ -d "$dir" ]; then
echo "Processing directory: $dir"
cd "$dir"
# Execute go mod tidy
echo "Running go mod tidy in $dir"
go mod tidy
# Execute go build
echo "Running go build in $dir"
go build
# Return to the parent directory
cd ..
fi
done
echo "Build process completed for all directories."