|
|
|
@ -19,6 +19,7 @@ import (
|
|
|
|
|
"recook/internal/v2/controller/app/upgrade"
|
|
|
|
|
"recook/internal/v2/controller/app/user"
|
|
|
|
|
"recook/internal/v2/controller/app/vip"
|
|
|
|
|
"recook/internal/v2/controller/thirdPartyApi"
|
|
|
|
|
"recook/internal/v2/router/middleware"
|
|
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
@ -308,4 +309,11 @@ func routerApp(appRouter *gin.RouterGroup) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
thridApiController := appRouter.Group("thridapi")
|
|
|
|
|
{
|
|
|
|
|
proxy := thirdPartyApi.TianXingApi{}
|
|
|
|
|
{
|
|
|
|
|
thridApiController.POST("holidays", proxy.GetHolidays)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|