Compare commits

..

No commits in common. "56f2a8d40b1ba0bb3bbafcfceb83b64e30ef9a9d" and "7dbef64c9189d94d8a68bf444454a3b0f5c28b03" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View File

@ -29,9 +29,9 @@ func BundleRouter(r *gin.RouterGroup) {
bundleClientRouteV2.POST("bundle-list", bundle.BundleListV2) bundleClientRouteV2.POST("bundle-list", bundle.BundleListV2)
bundleClientRouteV2.POST("bundle-detail", bundle.BundleDetailV2) bundleClientRouteV2.POST("bundle-detail", bundle.BundleDetailV2)
} }
bundleAppRouteV1 := bundleAppRoute.Group("common") bundleAppRoute = bundleAppRoute.Group("common")
{ {
bundleAppRouteV1.POST("bundle-list", bundle.BundleList) bundleAppRoute.POST("bundle-list", bundle.BundleList)
} }
bundleAppRouteV2 := bundleAppRoute.Group("app/system/v2") bundleAppRouteV2 := bundleAppRoute.Group("app/system/v2")
{ {

View File

@ -30,9 +30,9 @@ func ValueAddBundleRouter(r *gin.RouterGroup) {
bundleClientRouteV2.POST("detail", bundle.ValueAddServiceDetail) bundleClientRouteV2.POST("detail", bundle.ValueAddServiceDetail)
} }
valueAddBundleAppRouteV1 := valueAddBundleAppRoute.Group("system") valueAddBundleAppRoute = valueAddBundleAppRoute.Group("system")
{ {
valueAddBundleAppRouteV1.POST("list", bundle.ValueAddBundleList) valueAddBundleAppRoute.POST("list", bundle.ValueAddBundleList)
} }
valueAddBundleAppRouteV2 := valueAddBundleAppRoute.Group("system/v2") valueAddBundleAppRouteV2 := valueAddBundleAppRoute.Group("system/v2")
{ {