16 lines
341 B
Go
16 lines
341 B
Go
package router
|
|
|
|
import (
|
|
"91porn-server/web/api/integral_config_ctrl"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func integralConfigRouter(router *gin.RouterGroup) {
|
|
group := router.Group("/integral_config")
|
|
{
|
|
group.PUT("", integral_config_ctrl.Update)
|
|
group.POST("", integral_config_ctrl.Add)
|
|
group.GET("", integral_config_ctrl.QueryAll)
|
|
}
|
|
}
|