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!"); +}