mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-09-07 23:25:30 +08:00
17 lines
249 B
Go
17 lines
249 B
Go
package service
|
|
|
|
import "github.com/1Panel-dev/1Panel/internal/repo"
|
|
|
|
type UserService interface {
|
|
}
|
|
|
|
func NewUserService() UserService {
|
|
return &userService{}
|
|
}
|
|
|
|
type userService struct {
|
|
userRepo repo.UserRepo
|
|
}
|
|
|
|
func (u *userService) Get() {
|
|
}
|