From 26afe7f3868b8972a96cc0cb4ae62691e3d0db42 Mon Sep 17 00:00:00 2001 From: Yonah Date: Tue, 17 Mar 2026 21:50:29 +0900 Subject: [PATCH] all: initialise go module Signed-off-by: Yonah --- .gitignore | 26 ++++++++++++++++++++++++++ go.mod | 3 +++ 2 files changed, 29 insertions(+) create mode 100644 .gitignore create mode 100644 go.mod diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e40de5c --- /dev/null +++ b/.gitignore @@ -0,0 +1,26 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib +*.pkg +/streamdata + +# 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..055db0f --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.gensokyo.uk/yonah/streamdata + +go 1.25.7