From 7feac30f793c65939db0f2deb5a4488d6b5e4c69 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Wed, 18 Feb 2026 10:34:32 -0500 Subject: [PATCH] More basic setup stuff. --- .gitignore | 1 + Makefile | 14 ++++++++++++++ go.mod | 3 +++ main.go | 9 +++++++++ 4 files changed, 27 insertions(+) create mode 100644 Makefile create mode 100644 go.mod create mode 100644 main.go diff --git a/.gitignore b/.gitignore index b15a805..aecfe53 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ backup *.dll *.gz config.json +bin/* diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..30154e5 --- /dev/null +++ b/Makefile @@ -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 + diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..313ec0f --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module MY/cert-bouncer + +go 1.25.3 diff --git a/main.go b/main.go new file mode 100644 index 0000000..6aeee41 --- /dev/null +++ b/main.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("yay!"); +}