demo merge into project

This commit is contained in:
Gordon 2021-12-01 14:39:29 +08:00
parent c1ed2f14c8
commit f08941c0bd

View File

@ -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() {