19 lines
237 B
Go
19 lines
237 B
Go
package service
|
|
|
|
type UserService interface {
|
|
}
|
|
|
|
type userService struct {
|
|
*Service
|
|
}
|
|
|
|
func NewUserService(service *Service) UserService {
|
|
return &userService{
|
|
Service: service,
|
|
}
|
|
}
|
|
|
|
func (s *userService) GetUserById(id int64) {
|
|
|
|
}
|