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) }