2024-02-21 11:45:10 +07:00
|
|
|
package v2
|
|
|
|
|
2024-02-21 12:06:40 +07:00
|
|
|
import codegen "github.com/KaySar12/NextZen-UserService/codegen/user_service"
|
2024-02-21 11:45:10 +07:00
|
|
|
|
|
|
|
type UserService struct{}
|
|
|
|
|
|
|
|
func NewUserService() codegen.ServerInterface {
|
|
|
|
return &UserService{}
|
|
|
|
}
|