From 82fb2209c9a3b29ee0c0d07ef6badf110db23bc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Mon, 11 Nov 2024 16:39:57 +0800 Subject: [PATCH] init go mod --- .gitignore | 24 ++++++++++++++++++++++++ go.mod | 3 +++ 2 files changed, 27 insertions(+) create mode 100644 .gitignore create mode 100644 go.mod diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a8e5d8f --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Created by .ignore support plugin (hsz.mobi) +### Go template +# 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 +.vscode +.fleet +release +logs +.scannerwork +.env \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..10be16b --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.zhangdeman.cn/gateway/core + +go 1.23.3