Compare commits

..

No commits in common. "7643f37b739da471b3bd56ac4133e9b4c540175e" and "47df0cc2d9ab9773521165b00d73dc2bcab61130" have entirely different histories.

5 changed files with 0 additions and 38 deletions

4
.gitignore vendored
View File

@ -1,4 +0,0 @@
bin/
.env
*_templ.go
.idea/

View File

@ -1,23 +0,0 @@
.DEFAULT_GOAL := all
# seems superfluous
#.PHONY: fmt vet build clean
fmt:
go fmt ./...
vet: fmt
go vet ./...
build: vet
mkdir -p bin
go build -o bin ./cmd/...
test: build
go test -count=1 -coverprofile=testout/coverage.out ${TESTFLAGS} ./...
clean:
rm -rf bin
all: build

View File

@ -1,3 +1,2 @@
initial version of tools initial version of tools
xxx

View File

@ -1,7 +0,0 @@
package main
import "fmt"
func main() {
fmt.Println("Hello")
}

3
go.mod
View File

@ -1,3 +0,0 @@
module git.wamblee.org/public/gotools
go 1.23.3