commit 82a26f5c72a977d29e95c5bd5329833cff6ca747 Author: liuchangshun <961347548@qq.com> Date: Tue Nov 21 18:03:56 2023 +0800 first commit diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..35410ca --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/lxutils.iml b/.idea/lxutils.iml new file mode 100644 index 0000000..5e764c4 --- /dev/null +++ b/.idea/lxutils.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..a6c8720 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..e293193 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.listensoft.net/tool/lxutils + +go 1.19 diff --git a/lxutils.go b/lxutils.go new file mode 100644 index 0000000..408deb5 --- /dev/null +++ b/lxutils.go @@ -0,0 +1,7 @@ +package lxutils + +import "fmt" + +func Aa() { + fmt.Println(123) +}