This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
schisandra-cloud-album/service/auth_service/auth_service.go
landaiqing 9b36d2fff0 add swagger
2024-08-05 15:44:33 +08:00

13 lines
232 B
Go

package auth_service
import (
"schisandra-cloud-album/global"
"schisandra-cloud-album/model"
)
func (AuthService) GetUserList() []*model.ScaAuthUser {
data := make([]*model.ScaAuthUser, 0)
global.DB.Find(&data)
return data
}