Skip to content

Commit 186952a

Browse files
FGadvancerwithchaocubxxw
authored
refactor: change project module name. (#1038)
* fix: to start im or chat, ZooKeeper must be started first. * fix: msg gateway start output err info Signed-off-by: Gordon <[email protected]> * fix: msg gateway start output err info Signed-off-by: Gordon <[email protected]> * chore: package path changes Signed-off-by: withchao <[email protected]> * fix: go mod update Signed-off-by: Gordon <[email protected]> * fix: token update Signed-off-by: Gordon <[email protected]> * chore: package path changes Signed-off-by: withchao <[email protected]> * chore: package path changes Signed-off-by: withchao <[email protected]> * fix: token update Signed-off-by: Gordon <[email protected]> * fix: token update Signed-off-by: Gordon <[email protected]> * fix: token update Signed-off-by: Gordon <[email protected]> * fix: token update Signed-off-by: Gordon <[email protected]> * fix: token update Signed-off-by: Gordon <[email protected]> * fix: token update Signed-off-by: Gordon <[email protected]> * fix: get all userID Signed-off-by: Gordon <[email protected]> * fix: msggateway add online status call Signed-off-by: Gordon <[email protected]> * refactor: log change Signed-off-by: Gordon <[email protected]> * refactor: log change Signed-off-by: Gordon <[email protected]> * chore: network mode change Signed-off-by: Gordon <[email protected]> * cicd: robot automated Change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * cicd: robot automated Change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * cicd: robot automated Change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * feat: add api of get server time Signed-off-by: Gordon <[email protected]> * feat: remove go work sum Signed-off-by: Gordon <[email protected]> * cicd: robot automated Change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * fix: pull message add isRead field Signed-off-by: Gordon <[email protected]> * fix: check msg-transfer script Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: script update Signed-off-by: Gordon <[email protected]> * fix: start don't kill old process Signed-off-by: Gordon <[email protected]> * cicd: robot automated Change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * fix: check component Signed-off-by: Gordon <[email protected]> * fix: pull message set isRead only message come from single. Signed-off-by: Gordon <[email protected]> * cicd: robot automated Change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * fix: multiple gateway kick user each other. Signed-off-by: Gordon <[email protected]> * fix: multiple gateway kick user each other. Signed-off-by: Gordon <[email protected]> * fix: multiple gateway kick user each other. Signed-off-by: Gordon <[email protected]> * fix: multiple gateway kick user each other. Signed-off-by: Gordon <[email protected]> * fix: multiple gateway kick user each other. Signed-off-by: Gordon <[email protected]> * fix: multiple gateway kick user each other. Signed-off-by: Gordon <[email protected]> * cicd: robot automated Change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * fix: multiple gateway kick user each other. Signed-off-by: Gordon <[email protected]> * fix: add ex field to update group info. Signed-off-by: Gordon <[email protected]> * cicd: robot automated Change * cicd: robot automated Change * refactor: change project module name. Signed-off-by: Gordon <[email protected]> * refactor: change project module name. Signed-off-by: Gordon <[email protected]> * refactor: change project module name. Signed-off-by: Gordon <[email protected]> * cicd: robot automated Change --------- Signed-off-by: Gordon <[email protected]> Signed-off-by: withchao <[email protected]> Signed-off-by: Gordon <[email protected]> Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: withchao <[email protected]> Co-authored-by: Xinwei Xiong <[email protected]> Co-authored-by: FGadvancer <[email protected]>
1 parent da89121 commit 186952a

File tree

166 files changed

+369
-366
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+369
-366
lines changed

cmd/openim-api/main.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ import (
2828
openkeeper "github.com/OpenIMSDK/tools/discoveryregistry/zookeeper"
2929
"github.com/OpenIMSDK/tools/log"
3030

31-
"github.com/OpenIMSDK/Open-IM-Server/internal/api"
32-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
33-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
34-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/cache"
31+
"github.com/openimsdk/open-im-server/v3/internal/api"
32+
"github.com/openimsdk/open-im-server/v3/pkg/common/cmd"
33+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
34+
"github.com/openimsdk/open-im-server/v3/pkg/common/db/cache"
3535
)
3636

3737
func main() {

cmd/openim-cmdutils/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
package main
1616

1717
import (
18-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
18+
"github.com/openimsdk/open-im-server/v3/pkg/common/cmd"
1919
)
2020

2121
func main() {

cmd/openim-crontask/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
package main
1616

1717
import (
18-
"github.com/OpenIMSDK/Open-IM-Server/internal/tools"
19-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
18+
"github.com/openimsdk/open-im-server/v3/internal/tools"
19+
"github.com/openimsdk/open-im-server/v3/pkg/common/cmd"
2020
)
2121

2222
func main() {

cmd/openim-msggateway/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
package main
1616

1717
import (
18-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
18+
"github.com/openimsdk/open-im-server/v3/pkg/common/cmd"
1919
)
2020

2121
func main() {

cmd/openim-msgtransfer/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
package main
1616

1717
import (
18-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
18+
"github.com/openimsdk/open-im-server/v3/pkg/common/cmd"
1919
)
2020

2121
func main() {

cmd/openim-push/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
package main
1616

1717
import (
18-
"github.com/OpenIMSDK/Open-IM-Server/internal/push"
19-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
20-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
18+
"github.com/openimsdk/open-im-server/v3/internal/push"
19+
"github.com/openimsdk/open-im-server/v3/pkg/common/cmd"
20+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
2121
)
2222

2323
func main() {

cmd/openim-rpc/openim-rpc-auth/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
package main
1616

1717
import (
18-
"github.com/OpenIMSDK/Open-IM-Server/internal/rpc/auth"
19-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
20-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
18+
"github.com/openimsdk/open-im-server/v3/internal/rpc/auth"
19+
"github.com/openimsdk/open-im-server/v3/pkg/common/cmd"
20+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
2121
)
2222

2323
func main() {

cmd/openim-rpc/openim-rpc-conversation/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
package main
1616

1717
import (
18-
"github.com/OpenIMSDK/Open-IM-Server/internal/rpc/conversation"
19-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
20-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
18+
"github.com/openimsdk/open-im-server/v3/internal/rpc/conversation"
19+
"github.com/openimsdk/open-im-server/v3/pkg/common/cmd"
20+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
2121
)
2222

2323
func main() {

cmd/openim-rpc/openim-rpc-friend/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
package main
1616

1717
import (
18-
"github.com/OpenIMSDK/Open-IM-Server/internal/rpc/friend"
19-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
20-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
18+
"github.com/openimsdk/open-im-server/v3/internal/rpc/friend"
19+
"github.com/openimsdk/open-im-server/v3/pkg/common/cmd"
20+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
2121
)
2222

2323
func main() {

cmd/openim-rpc/openim-rpc-group/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
package main
1616

1717
import (
18-
"github.com/OpenIMSDK/Open-IM-Server/internal/rpc/group"
19-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
20-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
18+
"github.com/openimsdk/open-im-server/v3/internal/rpc/group"
19+
"github.com/openimsdk/open-im-server/v3/pkg/common/cmd"
20+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
2121
)
2222

2323
func main() {

cmd/openim-rpc/openim-rpc-msg/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
package main
1616

1717
import (
18-
"github.com/OpenIMSDK/Open-IM-Server/internal/rpc/msg"
19-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
20-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
18+
"github.com/openimsdk/open-im-server/v3/internal/rpc/msg"
19+
"github.com/openimsdk/open-im-server/v3/pkg/common/cmd"
20+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
2121
)
2222

2323
func main() {

cmd/openim-rpc/openim-rpc-third/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
package main
1616

1717
import (
18-
"github.com/OpenIMSDK/Open-IM-Server/internal/rpc/third"
19-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
20-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
18+
"github.com/openimsdk/open-im-server/v3/internal/rpc/third"
19+
"github.com/openimsdk/open-im-server/v3/pkg/common/cmd"
20+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
2121
)
2222

2323
func main() {

cmd/openim-rpc/openim-rpc-user/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
package main
1616

1717
import (
18-
"github.com/OpenIMSDK/Open-IM-Server/internal/rpc/user"
19-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
20-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
18+
"github.com/openimsdk/open-im-server/v3/internal/rpc/user"
19+
"github.com/openimsdk/open-im-server/v3/pkg/common/cmd"
20+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
2121
)
2222

2323
func main() {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/OpenIMSDK/Open-IM-Server
1+
module github.com/openimsdk/open-im-server/v3
22

33
go 1.18
44

go.work

+1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ use (
1010
./tools/openim-web
1111
./tools/versionchecker
1212
./tools/yamlfmt
13+
./tools/component
1314
)

internal/api/auth.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"github.com/OpenIMSDK/protocol/auth"
2121
"github.com/OpenIMSDK/tools/a2r"
2222

23-
"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
23+
"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
2424
)
2525

2626
type AuthApi rpcclient.Auth

internal/api/conversation.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"github.com/OpenIMSDK/protocol/conversation"
2121
"github.com/OpenIMSDK/tools/a2r"
2222

23-
"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
23+
"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
2424
)
2525

2626
type ConversationApi rpcclient.Conversation

internal/api/friend.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/OpenIMSDK/protocol/friend"
1919
"github.com/OpenIMSDK/tools/a2r"
2020

21-
"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
21+
"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
2222

2323
"github.com/gin-gonic/gin"
2424
)

internal/api/group.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/OpenIMSDK/protocol/group"
1919
"github.com/OpenIMSDK/tools/a2r"
2020

21-
"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
21+
"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
2222

2323
"github.com/gin-gonic/gin"
2424
)

internal/api/msg.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@
1515
package api
1616

1717
import (
18-
"github.com/OpenIMSDK/Open-IM-Server/pkg/authverify"
19-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
2018
"github.com/OpenIMSDK/tools/mcontext"
2119
"github.com/gin-gonic/gin"
2220
"github.com/go-playground/validator/v10"
2321
"github.com/mitchellh/mapstructure"
2422

23+
"github.com/openimsdk/open-im-server/v3/pkg/authverify"
24+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
25+
2526
"github.com/OpenIMSDK/protocol/constant"
2627
"github.com/OpenIMSDK/protocol/msg"
2728
"github.com/OpenIMSDK/protocol/sdkws"
@@ -31,8 +32,8 @@ import (
3132
"github.com/OpenIMSDK/tools/log"
3233
"github.com/OpenIMSDK/tools/utils"
3334

34-
"github.com/OpenIMSDK/Open-IM-Server/pkg/apistruct"
35-
"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
35+
"github.com/openimsdk/open-im-server/v3/pkg/apistruct"
36+
"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
3637
)
3738

3839
type MessageApi struct {

internal/api/route.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ import (
2323
"github.com/OpenIMSDK/tools/errs"
2424
"github.com/OpenIMSDK/tools/tokenverify"
2525

26-
"github.com/OpenIMSDK/Open-IM-Server/pkg/authverify"
27-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/cache"
28-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/controller"
26+
"github.com/openimsdk/open-im-server/v3/pkg/authverify"
27+
"github.com/openimsdk/open-im-server/v3/pkg/common/db/cache"
28+
"github.com/openimsdk/open-im-server/v3/pkg/common/db/controller"
2929

3030
"github.com/gin-gonic/gin"
3131
"github.com/gin-gonic/gin/binding"
@@ -38,9 +38,9 @@ import (
3838
"github.com/OpenIMSDK/tools/log"
3939
"github.com/OpenIMSDK/tools/mw"
4040

41-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
42-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/prome"
43-
"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
41+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
42+
"github.com/openimsdk/open-im-server/v3/pkg/common/prome"
43+
"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
4444
)
4545

4646
func NewGinRouter(discov discoveryregistry.SvcDiscoveryRegistry, rdb redis.UniversalClient) *gin.Engine {

internal/api/statistics.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"github.com/OpenIMSDK/protocol/user"
2121
"github.com/OpenIMSDK/tools/a2r"
2222

23-
"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
23+
"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
2424
)
2525

2626
type StatisticsApi rpcclient.User

internal/api/third.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/OpenIMSDK/tools/errs"
2727
"github.com/OpenIMSDK/tools/mcontext"
2828

29-
"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
29+
"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
3030
)
3131

3232
type ThirdApi rpcclient.Third

internal/api/user.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import (
2525
"github.com/OpenIMSDK/tools/errs"
2626
"github.com/OpenIMSDK/tools/log"
2727

28-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
29-
"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
28+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
29+
"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
3030
)
3131

3232
type UserApi rpcclient.User

internal/msggateway/callback.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import (
2121
"github.com/OpenIMSDK/protocol/constant"
2222
"github.com/OpenIMSDK/tools/mcontext"
2323

24-
cbapi "github.com/OpenIMSDK/Open-IM-Server/pkg/callbackstruct"
25-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
26-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/http"
24+
cbapi "github.com/openimsdk/open-im-server/v3/pkg/callbackstruct"
25+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
26+
"github.com/openimsdk/open-im-server/v3/pkg/common/http"
2727
)
2828

2929
func callBackURL() string {

internal/msggateway/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"runtime/debug"
2222
"sync"
2323

24-
"github.com/OpenIMSDK/Open-IM-Server/pkg/msgprocessor"
24+
"github.com/openimsdk/open-im-server/v3/pkg/msgprocessor"
2525

2626
"google.golang.org/protobuf/proto"
2727

internal/msggateway/hub_server.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,22 @@ import (
1919

2020
"github.com/OpenIMSDK/tools/mcontext"
2121

22-
"github.com/OpenIMSDK/Open-IM-Server/pkg/authverify"
22+
"github.com/openimsdk/open-im-server/v3/pkg/authverify"
2323

2424
"github.com/OpenIMSDK/tools/errs"
2525
"google.golang.org/grpc"
2626

27-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/cache"
27+
"github.com/openimsdk/open-im-server/v3/pkg/common/db/cache"
2828

2929
"github.com/OpenIMSDK/protocol/constant"
3030
"github.com/OpenIMSDK/protocol/msggateway"
3131
"github.com/OpenIMSDK/tools/discoveryregistry"
3232
"github.com/OpenIMSDK/tools/log"
3333
"github.com/OpenIMSDK/tools/utils"
3434

35-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
36-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/prome"
37-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/startrpc"
35+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
36+
"github.com/openimsdk/open-im-server/v3/pkg/common/prome"
37+
"github.com/openimsdk/open-im-server/v3/pkg/common/startrpc"
3838
)
3939

4040
func (s *Server) InitServer(disCov discoveryregistry.SvcDiscoveryRegistry, server *grpc.Server) error {

internal/msggateway/init.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"fmt"
1919
"time"
2020

21-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
21+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
2222
)
2323

2424
func RunWsAndServer(rpcPort, wsPort, prometheusPort int) error {

internal/msggateway/message_handler.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"github.com/OpenIMSDK/protocol/sdkws"
2828
"github.com/OpenIMSDK/tools/utils"
2929

30-
"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
30+
"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
3131
)
3232

3333
type Req struct {

internal/msggateway/n_ws_server.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ import (
2525

2626
"github.com/OpenIMSDK/protocol/msggateway"
2727

28-
"github.com/OpenIMSDK/Open-IM-Server/pkg/authverify"
29-
"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
28+
"github.com/openimsdk/open-im-server/v3/pkg/authverify"
29+
"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
3030

3131
"github.com/OpenIMSDK/protocol/constant"
3232

33-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
34-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/cache"
33+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
34+
"github.com/openimsdk/open-im-server/v3/pkg/common/db/cache"
3535

3636
"github.com/redis/go-redis/v9"
3737

internal/msgtransfer/init.go

+8-8
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ import (
2626
"github.com/OpenIMSDK/tools/log"
2727
"github.com/OpenIMSDK/tools/mw"
2828

29-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
30-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/cache"
31-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/controller"
32-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/relation"
33-
relationtb "github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/table/relation"
34-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/unrelation"
35-
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/prome"
36-
"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
29+
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
30+
"github.com/openimsdk/open-im-server/v3/pkg/common/db/cache"
31+
"github.com/openimsdk/open-im-server/v3/pkg/common/db/controller"
32+
"github.com/openimsdk/open-im-server/v3/pkg/common/db/relation"
33+
relationtb "github.com/openimsdk/open-im-server/v3/pkg/common/db/table/relation"
34+
"github.com/openimsdk/open-im-server/v3/pkg/common/db/unrelation"
35+
"github.com/openimsdk/open-im-server/v3/pkg/common/prome"
36+
"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
3737
)
3838

3939
type MsgTransfer struct {

0 commit comments

Comments
 (0)