online_code/repository/user.go

8 lines
106 B
Go
Raw Permalink Normal View History

2022-06-02 16:22:01 +08:00
package repository
type userService struct{}
func UserService() *userService {
return &userService{}
}