routes.go 539 B

123456789101112131415161718192021222324252627
  1. // Code generated by goctl. DO NOT EDIT.
  2. package handler
  3. import (
  4. "net/http"
  5. "bp.jydev.jianyu360.cn/BaseService/biCenter/api/internal/svc"
  6. "github.com/zeromicro/go-zero/rest"
  7. )
  8. func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
  9. server.AddRoutes(
  10. []rest.Route{
  11. {
  12. Method: http.MethodPost,
  13. Path: "/biService/sqlManage",
  14. Handler: sqlManageHandler(serverCtx),
  15. },
  16. {
  17. Method: http.MethodPost,
  18. Path: "/biService/myInfo",
  19. Handler: MyinfoHandler(serverCtx),
  20. },
  21. },
  22. )
  23. }