2022-11-30 11:16:11 +07:00
|
|
|
package v2
|
|
|
|
|
2022-11-30 12:07:36 +07:00
|
|
|
import codegen "github.com/IceWhaleTech/CasaOS-UserService/codegen/user_service"
|
2022-11-30 11:16:11 +07:00
|
|
|
|
|
|
|
type UserService struct{}
|
|
|
|
|
|
|
|
func NewUserService() codegen.ServerInterface {
|
|
|
|
return &UserService{}
|
|
|
|
}
|