From 90663f245b974e4990e53cfb912b20fcbdb573a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Tue, 5 Nov 2024 16:20:21 +0800 Subject: [PATCH] init --- .gitignore | 24 ++++++++++++++++++++++++ go.mod | 8 ++++++++ go.sum | 4 ++++ 3 files changed, 36 insertions(+) create mode 100644 .gitignore create mode 100644 go.mod create mode 100644 go.sum 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..1125407 --- /dev/null +++ b/go.mod @@ -0,0 +1,8 @@ +module git.zhangdeman.cn/zhangdeman/config + +go 1.23.2 + +require ( + github.com/jessevdk/go-flags v1.6.1 // indirect + golang.org/x/sys v0.26.0 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..b903a32 --- /dev/null +++ b/go.sum @@ -0,0 +1,4 @@ +github.com/jessevdk/go-flags v1.6.1 h1:Cvu5U8UGrLay1rZfv/zP7iLpSHGUZ/Ou68T0iX1bBK4= +github.com/jessevdk/go-flags v1.6.1/go.mod h1:Mk8T1hIAWpOiJiHa9rJASDK2UGWji0EuPGBnNLMooyc= +golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo= +golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=