You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package Controller
|
|
|
|
import (
|
|
"dsData/Controller/ControllerData"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
//基础Controller
|
|
func GinRouter(r *gin.Engine) {
|
|
//注册分路线:统一数据
|
|
rr := r.Group("/data")
|
|
ControllerData.Routers(rr)
|
|
}
|