From 3f2c699b96fc50fbb7cb173da1ba1f467fbbe725 Mon Sep 17 00:00:00 2001 From: laynexie Date: Fri, 3 Mar 2023 11:13:18 +0800 Subject: [PATCH 1/3] feat: add go.mod --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a2dbf43..c439503 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ Introduction [![GoDoc](https://img.shields.io/badge/api-reference-blue.svg)](https://godoc.org/github.com/funny/slab) Slab allocation memory pools for Go. +forked from https://github.com/funny/slab and add go.mod Usage ===== From 89b7a1fde13d3ec00b5dbc4780e2119eccf10389 Mon Sep 17 00:00:00 2001 From: laynexie Date: Fri, 3 Mar 2023 11:15:39 +0800 Subject: [PATCH 2/3] feat: add go.mod --- go.mod | 5 +++++ go.sum | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 go.mod create mode 100644 go.sum diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..b238528 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/funny/slab + +go 1.19 + +require github.com/funny/utest v0.0.0-20161029064919-43870a374500 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..9637fe6 --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/funny/utest v0.0.0-20161029064919-43870a374500 h1:Z0r1CZnoIWFB/Uiwh1BU5FYmuFe6L5NPi6XWQEmsTRg= +github.com/funny/utest v0.0.0-20161029064919-43870a374500/go.mod h1:mUn39tBov9jKnTWV1RlOYoNzxdBFHiSzXWdY1FoNGGg= From 2d2334a156814b864cfed8a481d2c52afa3b1c8a Mon Sep 17 00:00:00 2001 From: laynexie Date: Fri, 3 Mar 2023 11:28:25 +0800 Subject: [PATCH 3/3] =?UTF-8?q?feat:=20fork=E6=BA=90=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E5=90=88=E5=85=A5=EF=BC=8C=E5=85=88=E5=B0=86=E5=8C=85=E8=B7=AF?= =?UTF-8?q?=E5=BE=84=E8=AE=BE=E7=BD=AE=E4=B8=BA=E8=87=AA=E5=B7=B1=E4=BB=93?= =?UTF-8?q?=E5=BA=93=E4=BD=BF=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index b238528..bfa2984 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/funny/slab +module github.com/xiehui3651/slab go 1.19