From fdde31710cf0b94560583e1039088c90a21de5d6 Mon Sep 17 00:00:00 2001 From: wangpengfei <274878379@qq.com> Date: 星期二, 18 七月 2023 15:12:56 +0800 Subject: [PATCH] add --- router/data.go | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/router/data.go b/router/data.go index 7ef135b..11f489a 100644 --- a/router/data.go +++ b/router/data.go @@ -1 +1,15 @@ package router + +import ( + v1 "aps_crm/api/v1" + "github.com/gin-gonic/gin" +) + +type DataRouter struct{} + +func (s *DataRouter) InitDataRouter(router *gin.RouterGroup) { + dataRouter := router.Group("data") + { + dataRouter.GET("getAllData", v1.ApiGroup.GetAllDataApi.GetAllData) // 鑾峰彇鎵�鏈夋暟鎹� + } +} -- Gitblit v1.8.0