diff options
author | We-unite <3205135446@qq.com> | 2024-07-19 17:02:11 +0800 |
---|---|---|
committer | We-unite <3205135446@qq.com> | 2024-07-19 17:05:29 +0800 |
commit | 7cf8e470471d30fc821a8be350dcb97dc64e5add (patch) | |
tree | e747afbc698bba079047f17674eef260a4c6733d /src/go.mod | |
parent | 2e37dcf708be08dff963ee08cb7a9557f32e690d (diff) | |
download | godo-7cf8e470471d30fc821a8be350dcb97dc64e5add.tar.gz godo-7cf8e470471d30fc821a8be350dcb97dc64e5add.zip |
Depart the whole program into several files.
Put all the src code in only one file is to ugly, so devide it!
and mv them into src dir to keep the whole repo clear.
Diffstat (limited to 'src/go.mod')
-rw-r--r-- | src/go.mod | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/go.mod b/src/go.mod new file mode 100644 index 0000000..2969b32 --- /dev/null +++ b/src/go.mod | |||
@@ -0,0 +1,16 @@ | |||
1 | module godo | ||
2 | |||
3 | go 1.21.5 | ||
4 | |||
5 | require ( | ||
6 | github.com/elastic/go-libaudit/v2 v2.5.0 | ||
7 | github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 | ||
8 | gopkg.in/yaml.v3 v3.0.1 | ||
9 | ) | ||
10 | |||
11 | require ( | ||
12 | go.uber.org/atomic v1.7.0 // indirect | ||
13 | go.uber.org/multierr v1.7.0 // indirect | ||
14 | golang.org/x/sys v0.11.0 // indirect | ||
15 | gopkg.in/yaml.v2 v2.4.0 // indirect | ||
16 | ) | ||