From 8ed629118efab716488ee8f79c7deefc55bd1390 Mon Sep 17 00:00:00 2001 From: wangchuxiao Date: Wed, 25 May 2022 17:41:32 +0800 Subject: [PATCH] del msg --- test/mongo/{ => cmd}/main.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) rename test/mongo/{ => cmd}/main.go (86%) diff --git a/test/mongo/main.go b/test/mongo/cmd/main.go similarity index 86% rename from test/mongo/main.go rename to test/mongo/cmd/main.go index 29ea4ea4f..d3711e2ba 100644 --- a/test/mongo/main.go +++ b/test/mongo/cmd/main.go @@ -1,6 +1,7 @@ -package mongo +package cmd import ( + mongo2 "Open_IM/test/mongo" "context" "flag" "fmt" @@ -12,7 +13,7 @@ var ( client *mongo.Client ) -func initDB() { +func init() { clientOptions := options.Client().ApplyURI("mongodb://127.0.0.1:37017/openIM/?maxPoolSize=100") client, err := mongo.Connect(context.TODO(), clientOptions) if err != nil { @@ -29,5 +30,5 @@ func main() { userID := flag.String("userID", "", "userID") flag.Parse() fmt.Println("userID:", userID) - GetUserAllChat(*userID) + mongo2.GetUserAllChat(*userID) }