33 lines
670 B
Go
33 lines
670 B
Go
|
// Code generated by goctl. DO NOT EDIT.
|
||
|
package handler
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"fusenapi/server/upload/internal/svc"
|
||
|
|
||
|
"github.com/zeromicro/go-zero/rest"
|
||
|
)
|
||
|
|
||
|
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
|
||
|
server.AddRoutes(
|
||
|
[]rest.Route{
|
||
|
{
|
||
|
Method: http.MethodGet,
|
||
|
Path: "/upload/up-file",
|
||
|
Handler: UploadUpFileHandler(serverCtx),
|
||
|
},
|
||
|
{
|
||
|
Method: http.MethodPost,
|
||
|
Path: "/upload/upload-file-frontend",
|
||
|
Handler: UploadFileFrontendHandler(serverCtx),
|
||
|
},
|
||
|
{
|
||
|
Method: http.MethodPost,
|
||
|
Path: "/upload/upload-file-backend",
|
||
|
Handler: UploadFileBackendHandler(serverCtx),
|
||
|
},
|
||
|
},
|
||
|
)
|
||
|
}
|