// Code generated by goctl. DO NOT EDIT.
package handler

import (
	"net/http"

	"fusenapi/server/product-model/internal/svc"

	"github.com/zeromicro/go-zero/rest"
)

func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
	server.AddRoutes(
		[]rest.Route{
			{
				Method:  http.MethodGet,
				Path:    "/api/product-model/detail",
				Handler: GetModelDetailHandler(serverCtx),
			},
			{
				Method:  http.MethodGet,
				Path:    "/api/product-model/other-info",
				Handler: GetModelOtherInfoHandler(serverCtx),
			},
			{
				Method:  http.MethodPost,
				Path:    "/api/product-model/update-model",
				Handler: UpdateProductModelHandler(serverCtx),
			},
		},
	)
}