go mod tidy was broken

This commit is contained in:
Jeff Carr 2025-01-18 04:48:19 -06:00
parent edfe36358a
commit 0552380418
3 changed files with 9 additions and 11 deletions

1
.forge
View File

@ -1,3 +1,4 @@
// `forge:ignore:gomod`
// `forge:build:forgeConfig/ /usr/lib/wit-utils/` // `forge:build:forgeConfig/ /usr/lib/wit-utils/`
// `forge:build:go-clone-test/ /usr/lib/wit-utils/` // `forge:build:go-clone-test/ /usr/lib/wit-utils/`
// `forge:build:scanGoSrc/ /usr/lib/wit-utils/` // `forge:build:scanGoSrc/ /usr/lib/wit-utils/`

View File

@ -1,9 +1,6 @@
all: all:
make -C forgeConfig @echo "# todo: fix Makefile to use the .forge file"
make -C virtbuf-example
make -C zoopb-example
make -C testGui
make -C going2git # actually builds against git2go using libgit2 v1.8.4
clean: clean:
rm -f go.* rm -f go.*
go-mod-clean --purge

View File

@ -1,5 +1,6 @@
package main package main
/*
import ( import (
"gocloud.dev/blob" "gocloud.dev/blob"
// _ "gocloud.dev/blob/<driver>" // _ "gocloud.dev/blob/<driver>"
@ -37,12 +38,10 @@ func main() {
// Alternatively, you can configure the prefix directly in the blob.OpenBucket URL: // Alternatively, you can configure the prefix directly in the blob.OpenBucket URL:
/* // import (
import ( // "context"
"context" // "gocloud.dev/blob"
"gocloud.dev/blob" // )
)
*/
// Connect to a bucket using a URL, using the "prefix" query parameter to // Connect to a bucket using a URL, using the "prefix" query parameter to
// target a subfolder in the bucket. // target a subfolder in the bucket.
@ -56,3 +55,4 @@ func main() {
// Bucket operations on <key> will be translated to "a/subfolder/<key>". // Bucket operations on <key> will be translated to "a/subfolder/<key>".
} }
*/