From 70e146b79b2fa1c57e017ed6e719ec1dfc874363 Mon Sep 17 00:00:00 2001 From: black Date: Fri, 30 Jan 2026 13:01:12 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E6=AC=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 10 ++++++++++ .idea/UniappTool.xml | 10 ++++++++++ .idea/go.imports.xml | 11 +++++++++++ .idea/goframehelperCache.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/testgomod.iml | 9 +++++++++ go.mod | 3 +++ main.go | 5 +++++ 8 files changed, 62 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/UniappTool.xml create mode 100644 .idea/go.imports.xml create mode 100644 .idea/goframehelperCache.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/testgomod.iml create mode 100644 go.mod create mode 100644 main.go diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b6b1ecf --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,10 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 已忽略包含查询文件的默认文件夹 +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ diff --git a/.idea/UniappTool.xml b/.idea/UniappTool.xml new file mode 100644 index 0000000..f7328e8 --- /dev/null +++ b/.idea/UniappTool.xml @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/.idea/go.imports.xml b/.idea/go.imports.xml new file mode 100644 index 0000000..d7202f0 --- /dev/null +++ b/.idea/go.imports.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/.idea/goframehelperCache.xml b/.idea/goframehelperCache.xml new file mode 100644 index 0000000..ba727ea --- /dev/null +++ b/.idea/goframehelperCache.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..6dbc14d --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/testgomod.iml b/.idea/testgomod.iml new file mode 100644 index 0000000..5e764c4 --- /dev/null +++ b/.idea/testgomod.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..6ed8fea --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.magicany.cc/black1552/go-test-mod + +go 1.24 diff --git a/main.go b/main.go new file mode 100644 index 0000000..f1107db --- /dev/null +++ b/main.go @@ -0,0 +1,5 @@ +package main + +func Test() string { + return "Hello World" +}