From a5f4aa28c5894abf5c538f100e8be1bf77651766 Mon Sep 17 00:00:00 2001 From: hanJoker Date: Tue, 9 Aug 2022 16:56:31 +0800 Subject: [PATCH] add .gitignore --- .gitignore | 17 +++++++++++++++++ go.mod | 3 +++ 2 files changed, 20 insertions(+) create mode 100644 .gitignore create mode 100644 go.mod diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..91b6d9f --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# 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/ + +.idea diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..41c200d --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module msa + +go 1.18