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