More basic setup stuff.

master
Zed A. Shaw 6 hours ago
parent 4963b8c9be
commit 7feac30f79
  1. 1
      .gitignore
  2. 14
      Makefile
  3. 3
      go.mod
  4. 9
      main.go

1
.gitignore vendored

@ -24,3 +24,4 @@ backup
*.dll *.dll
*.gz *.gz
config.json config.json
bin/*

@ -0,0 +1,14 @@
all: build
build:
go build -o bin/ .
test:
./bin/tests.test
test_only:
./bin/tests.test -test.run $(TEST)
docs:
pkgsite --open

@ -0,0 +1,3 @@
module MY/cert-bouncer
go 1.25.3

@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("yay!");
}
Loading…
Cancel
Save