This commit is contained in:
白茶清欢 2024-11-05 16:20:21 +08:00
parent f54cd3a48a
commit 90663f245b
3 changed files with 36 additions and 0 deletions

24
.gitignore vendored Normal file
View File

@ -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

8
go.mod Normal file
View File

@ -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
)

4
go.sum Normal file
View File

@ -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=