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.
17 lines
400 B
17 lines
400 B
|
4 years ago
|
package shiyan
|
||
|
|
|
||
|
|
import (
|
||
|
|
v1 "github.com/flipped-aurora/gin-vue-admin/server/api/v1"
|
||
|
|
"github.com/gin-gonic/gin"
|
||
|
|
)
|
||
|
|
|
||
|
|
type ShiyanRouter struct{}
|
||
|
|
|
||
|
|
func (s *ShiyanRouter) InitShiyanRouter(Router *gin.RouterGroup) {
|
||
|
|
shiyanCodeRouter := Router.Group("shiyan")
|
||
|
|
var authorityApi = v1.ApiGroupApp.ShiyanApiGroup.ShiyanApi
|
||
|
|
{
|
||
|
|
shiyanCodeRouter.POST("/", authorityApi.AddBaseMenu) // 删除回滚记录
|
||
|
|
}
|
||
|
|
}
|