From b2106b3f5bc66a3ae0ad9f940770fdd68c9d0740 Mon Sep 17 00:00:00 2001 From: NGnius Date: Wed, 26 Feb 2020 16:12:19 -0500 Subject: [PATCH] Go mod init --- .gitignore | 9 +++++++++ go.mod | 3 +++ 2 files changed, 12 insertions(+) create mode 100644 go.mod diff --git a/.gitignore b/.gitignore index 9a3a8d8..acb9124 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,12 @@ # Output of the go coverage tool, specifically when used with LiteIDE *.out +# go mod checksum +go.sum + +# build binary +leadercraft-s + +# sqlite default db +test.sqlite + diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..c58d279 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.exmods.org/NGnius/leadercraft-c + +go 1.13