NextZen-UserService/route/v2/route.go

10 lines
191 B
Go
Raw Permalink Normal View History

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{}
}