12345678910111213141516171819202122232425262728293031323334353637 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "app.yhyue.com/moapp/dataDeduplication/api/internal/svc"
- "github.com/tal-tech/go-zero/rest"
- )
- func RegisterHandlers(engine *rest.Server, serverCtx *svc.ServiceContext) {
- engine.AddRoutes(
- []rest.Route{
- {
- Method: http.MethodPost,
- Path: "/data/deduplication",
- Handler: DatadeduplicationHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/data/getEntCount",
- Handler: GetEntCountHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/data/dedupByAcount",
- Handler: dedupByAcountHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/data/dedupAndSave",
- Handler: dedupAndSaveHandler(serverCtx),
- },
- },
- )
- }
|