Testing out the tools/cmd pattern with go get tool

This commit is contained in:
Zed A. Shaw 2025-07-04 13:01:12 -04:00
parent f476605ecf
commit 3939a54513
2 changed files with 11 additions and 54 deletions

9
tools/cmd/dostuff.go Normal file
View file

@ -0,0 +1,9 @@
package main
import (
"log"
)
func main() {
log.Println("I DO THING!")
}