mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
del msg
This commit is contained in:
parent
bf42f0b907
commit
8ed629118e
@ -1,6 +1,7 @@
|
|||||||
package mongo
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
mongo2 "Open_IM/test/mongo"
|
||||||
"context"
|
"context"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
@ -12,7 +13,7 @@ var (
|
|||||||
client *mongo.Client
|
client *mongo.Client
|
||||||
)
|
)
|
||||||
|
|
||||||
func initDB() {
|
func init() {
|
||||||
clientOptions := options.Client().ApplyURI("mongodb://127.0.0.1:37017/openIM/?maxPoolSize=100")
|
clientOptions := options.Client().ApplyURI("mongodb://127.0.0.1:37017/openIM/?maxPoolSize=100")
|
||||||
client, err := mongo.Connect(context.TODO(), clientOptions)
|
client, err := mongo.Connect(context.TODO(), clientOptions)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -29,5 +30,5 @@ func main() {
|
|||||||
userID := flag.String("userID", "", "userID")
|
userID := flag.String("userID", "", "userID")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
fmt.Println("userID:", userID)
|
fmt.Println("userID:", userID)
|
||||||
GetUserAllChat(*userID)
|
mongo2.GetUserAllChat(*userID)
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user