routes.go 789 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // Code generated by goctl. DO NOT EDIT.
  2. package handler
  3. import (
  4. "net/http"
  5. "app.yhyue.com/moapp/dataDeduplication/api/internal/svc"
  6. "github.com/tal-tech/go-zero/rest"
  7. )
  8. func RegisterHandlers(engine *rest.Server, serverCtx *svc.ServiceContext) {
  9. engine.AddRoutes(
  10. []rest.Route{
  11. {
  12. Method: http.MethodPost,
  13. Path: "/data/deduplication",
  14. Handler: DatadeduplicationHandler(serverCtx),
  15. },
  16. {
  17. Method: http.MethodPost,
  18. Path: "/data/getEntCount",
  19. Handler: GetEntCountHandler(serverCtx),
  20. },
  21. {
  22. Method: http.MethodPost,
  23. Path: "/data/dedupByAcount",
  24. Handler: dedupByAcountHandler(serverCtx),
  25. },
  26. {
  27. Method: http.MethodPost,
  28. Path: "/data/dedupAndSave",
  29. Handler: dedupAndSaveHandler(serverCtx),
  30. },
  31. },
  32. )
  33. }