From e702b3e23df300733bd29e9e558be8a3b3239ce9 Mon Sep 17 00:00:00 2001 From: steden <1470804@qq.com> Date: Tue, 19 Nov 2024 14:11:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 21 +++++++++++++++++++++ go.mod | 10 +++++++++- 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a574c78 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +# 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/* +go.sum +go.work.sum +go.work +/test/log/ +*.DS_Store \ No newline at end of file diff --git a/go.mod b/go.mod index 3dc4cd9..6ba8167 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,12 @@ module github.com/farseer-go/docker go 1.21 -toolchain go1.22.0 \ No newline at end of file +toolchain go1.23.3 + +require ( + github.com/farseer-go/collections v0.15.0 + github.com/farseer-go/fs v0.15.0 + github.com/farseer-go/utils v0.15.0 +) + +require github.com/timandy/routine v1.1.4 // indirect