// Code generated by goctl. DO NOT EDIT. package handler import ( "net/http" "bp.jydev.jianyu360.cn/ApplicationCenter/marketing/api/internal/svc" "github.com/zeromicro/go-zero/rest" ) func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) { server.AddRoutes( []rest.Route{ { Method: http.MethodPost, Path: "/marketing/time/now", Handler: TimeNowHandler(serverCtx), }, { Method: http.MethodPost, Path: "/marketing/appointment/add", Handler: AppointmentAddHandler(serverCtx), }, { Method: http.MethodPost, Path: "/marketing/appointment/isAppointment", Handler: IsAppointmentHandler(serverCtx), }, { Method: http.MethodPost, Path: "/marketing/activity/activityInfo", Handler: ActivityInfoHandler(serverCtx), }, }, ) }