This commit is contained in:
wangchuxiao 2022-05-25 17:48:28 +08:00 committed by Xinwei Xiong(cubxxw-openim)
parent 5c26611886
commit ae9be873c5
1 changed files with 1 additions and 1 deletions

View File

@ -26,6 +26,6 @@ func init() {
func main() {
userID := flag.String("userID", "", "userID")
flag.Parse()
fmt.Println("userID:", userID)
fmt.Println("userID:", *userID)
mongo2.GetUserAllChat(*userID)
}