| 12345678910111213141516 |
- package service
- import "sportfitness/base/repository/grpc/bsw/im"
- type User struct {
- base
- }
- func (User) SignInUserCodePassword(userCode, password, ip, ClientInfo string) (token string) {
- token, userId := im.SignInUserCodePassword(userCode, password, ip, ClientInfo)
- println(token, userId)
- return token
- }
|