chore: update module path to git.kingecg.top
This commit is contained in:
parent
e374da575e
commit
c1ff9df98a
|
@ -19,7 +19,7 @@ GoTiDB 是一个用 Go 语言编写的轻量级时序数据库,专门用于存
|
|||
确保你已经安装了 Go 1.16 或更高版本。
|
||||
|
||||
```bash
|
||||
git clone module git.kingecg.top/kingecg/gotidb
|
||||
git clone git.kingecg.top/kingecg/gotidb
|
||||
cd gotidb
|
||||
go mod download
|
||||
```
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
"syscall"
|
||||
"time"
|
||||
|
||||
"module git.kingecg.top/kingecg/gotidb/pkg/api"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/api"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/manager"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/messaging"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
|
|
|
@ -13,7 +13,7 @@ import (
|
|||
"math/big"
|
||||
"time"
|
||||
|
||||
"module git.kingecg.top/kingecg/gotidb/pkg/manager"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/manager"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
"github.com/quic-go/quic-go"
|
||||
)
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
|
||||
"github.com/gin-gonic/gin"
|
||||
|
||||
"module git.kingecg.top/kingecg/gotidb/pkg/manager"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/manager"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
)
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ import (
|
|||
|
||||
"github.com/gin-gonic/gin"
|
||||
|
||||
"module git.kingecg.top/kingecg/gotidb/pkg/manager"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/manager"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/storage"
|
||||
)
|
||||
|
|
|
@ -11,7 +11,7 @@ import (
|
|||
"github.com/gin-gonic/gin"
|
||||
"github.com/gorilla/websocket"
|
||||
|
||||
"module git.kingecg.top/kingecg/gotidb/pkg/manager"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/manager"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
)
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ import (
|
|||
|
||||
"github.com/gorilla/websocket"
|
||||
|
||||
"module git.kingecg.top/kingecg/gotidb/pkg/manager"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/manager"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/storage"
|
||||
)
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"sync"
|
||||
"time"
|
||||
|
||||
"module git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/storage"
|
||||
)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"testing"
|
||||
"time"
|
||||
|
||||
"module git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/storage"
|
||||
)
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ import (
|
|||
"github.com/nats-io/nats.go"
|
||||
"github.com/nats-io/nats.go/jetstream"
|
||||
|
||||
"module git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
"sync"
|
||||
"time"
|
||||
|
||||
"module git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
"go.etcd.io/bbolt"
|
||||
)
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"sync"
|
||||
"time"
|
||||
|
||||
"module git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
)
|
||||
|
||||
// PersistenceType 持久化类型
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
"testing"
|
||||
"time"
|
||||
|
||||
"module git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
)
|
||||
|
||||
func TestMemoryEngine(t *testing.T) {
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
"sync"
|
||||
"time"
|
||||
|
||||
"module git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
"git.kingecg.top/kingecg/gotidb/pkg/model"
|
||||
)
|
||||
|
||||
// Persister 持久化接口
|
||||
|
|
Loading…
Reference in New Issue