PersonalMain-Golang/internal/service/UserService/userService.go

19 lines
424 B
Go
Raw Normal View History

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)
2023-12-26 16:29:04 +08:00
UserLogout(*ghttp.Request)
}