18 lines
396 B
Go
18 lines
396 B
Go
|
package UserService
|
||
|
|
||
|
import (
|
||
|
"PersonalMain/internal/logic/UserServiceImpl"
|
||
|
"PersonalMain/internal/model/entity"
|
||
|
"github.com/gogf/gf/v2/net/ghttp"
|
||
|
)
|
||
|
|
||
|
func NewUserService() UserService {
|
||
|
return &UserServiceImpl.DefaultUserImpl{}
|
||
|
}
|
||
|
|
||
|
type UserService interface {
|
||
|
UserRegister(*ghttp.Request, *entity.UserRegisterVO)
|
||
|
UserLogin(*ghttp.Request, *entity.UserLoginVO)
|
||
|
CheckLogin(*ghttp.Request)
|
||
|
}
|