mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
demo merge into project
This commit is contained in:
parent
c1ed2f14c8
commit
f08941c0bd
@ -121,7 +121,10 @@ func SelectAllUID() ([]string, error) {
|
||||
if err != nil {
|
||||
return uid, err
|
||||
}
|
||||
rows, _ := dbConn.Raw("select uid from user").Rows()
|
||||
rows, err := dbConn.Raw("select uid from user").Rows()
|
||||
if err != nil {
|
||||
return uid, err
|
||||
}
|
||||
defer rows.Close()
|
||||
var strUID string
|
||||
for rows.Next() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user