2 Commits

Author SHA1 Message Date
tursom
04bd5127c3 update 2023-04-18 15:10:17 +08:00
tursom
fe5ce0df4d create project 2023-04-18 14:46:05 +08:00
5 changed files with 5 additions and 5 deletions

2
go.mod
View File

@@ -1,4 +1,4 @@
module kvs
module gitea.tursom.cn/tursom/kvs
go 1.20

View File

@@ -5,7 +5,7 @@ import (
"github.com/tursom/GoCollections/exceptions"
"github.com/tursom/GoCollections/lang"
"kvs/kv"
"gitea.tursom.cn/tursom/kvs/kv"
)
type (

View File

@@ -5,7 +5,7 @@ import (
"github.com/syndtr/goleveldb/leveldb"
"kvs/kv"
"gitea.tursom.cn/tursom/kvs/kv"
)
func Test_leveldbKVS(t *testing.T) {

View File

@@ -8,7 +8,7 @@ import (
"github.com/tursom/GoCollections/exceptions"
"github.com/tursom/GoCollections/lang"
"kvs/kv"
"gitea.tursom.cn/tursom/kvs/kv"
)
type (

View File

@@ -7,7 +7,7 @@ import (
_ "github.com/mattn/go-sqlite3"
"github.com/tursom/GoCollections/exceptions"
"kvs/kv"
"gitea.tursom.cn/tursom/kvs/kv"
)
func Test_sqliteKVS(t *testing.T) {