commit 3f5c3c8ff93853d73bd7ee3c1bfa81956f832286 Author: Yonah Date: Sat Mar 21 14:29:50 2026 +0900 all: initialise go module Signed-off-by: Yonah diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..47c5249 --- /dev/null +++ b/.gitignore @@ -0,0 +1,25 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib +*.pkg + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work +go.work.sum + +# env file +.env +.idea +.vscode \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..25ae62d --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.gensokyo.uk/cofront/cof-spec + +go 1.25.0