38 lines
811 B
Go
38 lines
811 B
Go
// Code generated by goctl. DO NOT EDIT.
|
|
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"fusenapi/server/websocket/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/websocket/data_transfer",
|
|
Handler: DataTransferHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodPost,
|
|
Path: "/api/websocket/render_notify",
|
|
Handler: RenderNotifyHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodPost,
|
|
Path: "/api/websocket/common_notify",
|
|
Handler: CommonNotifyHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodPost,
|
|
Path: "/api/websocket/close_websocket",
|
|
Handler: CloseWebsocketHandler(serverCtx),
|
|
},
|
|
},
|
|
)
|
|
}
|