Skip to content

Commit 9b1ac8b

Browse files
authored
Merge pull request #35 from ucwong/dev
Makefile env clean
2 parents f648eb7 + eecd26b commit 9b1ac8b

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,9 @@ test:
77

88
cover:
99
go tool cover -html=coverage.txt -o coverage.html
10+
11+
clean:
12+
go clean -cache
13+
find . -name '.golang-kv' | xargs rm -rf
14+
rm -rf coverage.html
15+
rm -rf coverage.txt

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/ucwong/golang-kv
33
go 1.19
44

55
require (
6-
github.com/dgraph-io/badger/v3 v3.0.0-20220623163930-7d159dd923ac
6+
github.com/dgraph-io/badger/v3 v3.0.0-20220802162129-2de177900e3c
77
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d
88
github.com/ucwong/go-ttlmap v1.0.2-0.20220531033718-59436cfae99c
99
go.etcd.io/bbolt v1.3.7-0.20220226045046-fd5535f71f48

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwc
1717
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1818
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
1919
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
20-
github.com/dgraph-io/badger/v3 v3.0.0-20220623163930-7d159dd923ac h1:X2ptKFnQ26tdEV5eHyMzRo2oxy+2rk9mGhL17+T2ORY=
21-
github.com/dgraph-io/badger/v3 v3.0.0-20220623163930-7d159dd923ac/go.mod h1:htT1nCRzQG5+APlZQcd9xe4P36WsdkN7IXQ72oAXrZw=
20+
github.com/dgraph-io/badger/v3 v3.0.0-20220802162129-2de177900e3c h1:bL3ASoYqq9jN6L6B5uhx46WEGHm8KCLu737NqD3zJVE=
21+
github.com/dgraph-io/badger/v3 v3.0.0-20220802162129-2de177900e3c/go.mod h1:htT1nCRzQG5+APlZQcd9xe4P36WsdkN7IXQ72oAXrZw=
2222
github.com/dgraph-io/ristretto v0.1.0 h1:Jv3CGQHp9OjuMBSne1485aDpUkTKEcUqF+jm/LuerPI=
2323
github.com/dgraph-io/ristretto v0.1.0/go.mod h1:fux0lOrBhrVCJd3lcTHsIJhq1T2rokOu6v9Vcb3Q9ug=
2424
github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2 h1:tdlZCpZ/P9DhczCTSixgIKmwPv6+wP5DGjqLYw5SUiA=

0 commit comments

Comments
 (0)