chore: update module path to git.kingecg.top

This commit is contained in:
kingecg 2025-06-26 01:11:26 +08:00
parent e374da575e
commit c1ff9df98a
14 changed files with 14 additions and 14 deletions

View File

@ -19,7 +19,7 @@ GoTiDB 是一个用 Go 语言编写的轻量级时序数据库,专门用于存
确保你已经安装了 Go 1.16 或更高版本。 确保你已经安装了 Go 1.16 或更高版本。
```bash ```bash
git clone module git.kingecg.top/kingecg/gotidb git clone git.kingecg.top/kingecg/gotidb
cd gotidb cd gotidb
go mod download go mod download
``` ```

View File

@ -9,7 +9,7 @@ import (
"syscall" "syscall"
"time" "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/manager"
"git.kingecg.top/kingecg/gotidb/pkg/messaging" "git.kingecg.top/kingecg/gotidb/pkg/messaging"
"git.kingecg.top/kingecg/gotidb/pkg/model" "git.kingecg.top/kingecg/gotidb/pkg/model"

View File

@ -13,7 +13,7 @@ import (
"math/big" "math/big"
"time" "time"
"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/model"
"github.com/quic-go/quic-go" "github.com/quic-go/quic-go"
) )

View File

@ -7,7 +7,7 @@ import (
"github.com/gin-gonic/gin" "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/model"
) )

View File

@ -11,7 +11,7 @@ import (
"github.com/gin-gonic/gin" "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/model"
"git.kingecg.top/kingecg/gotidb/pkg/storage" "git.kingecg.top/kingecg/gotidb/pkg/storage"
) )

View File

@ -11,7 +11,7 @@ import (
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/gorilla/websocket" "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/model"
) )

View File

@ -11,7 +11,7 @@ import (
"github.com/gorilla/websocket" "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/model"
"git.kingecg.top/kingecg/gotidb/pkg/storage" "git.kingecg.top/kingecg/gotidb/pkg/storage"
) )

View File

@ -6,7 +6,7 @@ import (
"sync" "sync"
"time" "time"
"module git.kingecg.top/kingecg/gotidb/pkg/model" "git.kingecg.top/kingecg/gotidb/pkg/model"
"git.kingecg.top/kingecg/gotidb/pkg/storage" "git.kingecg.top/kingecg/gotidb/pkg/storage"
) )

View File

@ -5,7 +5,7 @@ import (
"testing" "testing"
"time" "time"
"module git.kingecg.top/kingecg/gotidb/pkg/model" "git.kingecg.top/kingecg/gotidb/pkg/model"
"git.kingecg.top/kingecg/gotidb/pkg/storage" "git.kingecg.top/kingecg/gotidb/pkg/storage"
) )

View File

@ -10,7 +10,7 @@ import (
"github.com/nats-io/nats.go" "github.com/nats-io/nats.go"
"github.com/nats-io/nats.go/jetstream" "github.com/nats-io/nats.go/jetstream"
"module git.kingecg.top/kingecg/gotidb/pkg/model" "git.kingecg.top/kingecg/gotidb/pkg/model"
) )
const ( const (

View File

@ -9,7 +9,7 @@ import (
"sync" "sync"
"time" "time"
"module git.kingecg.top/kingecg/gotidb/pkg/model" "git.kingecg.top/kingecg/gotidb/pkg/model"
"go.etcd.io/bbolt" "go.etcd.io/bbolt"
) )

View File

@ -6,7 +6,7 @@ import (
"sync" "sync"
"time" "time"
"module git.kingecg.top/kingecg/gotidb/pkg/model" "git.kingecg.top/kingecg/gotidb/pkg/model"
) )
// PersistenceType 持久化类型 // PersistenceType 持久化类型

View File

@ -7,7 +7,7 @@ import (
"testing" "testing"
"time" "time"
"module git.kingecg.top/kingecg/gotidb/pkg/model" "git.kingecg.top/kingecg/gotidb/pkg/model"
) )
func TestMemoryEngine(t *testing.T) { func TestMemoryEngine(t *testing.T) {

View File

@ -9,7 +9,7 @@ import (
"sync" "sync"
"time" "time"
"module git.kingecg.top/kingecg/gotidb/pkg/model" "git.kingecg.top/kingecg/gotidb/pkg/model"
) )
// Persister 持久化接口 // Persister 持久化接口