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.

15 lines
281 B

package router
import (
"gin-vue-admin/router/autocode"
"gin-vue-admin/router/example"
"gin-vue-admin/router/system"
)
type RouterGroup struct {
System system.RouterGroup
Example example.RouterGroup
Autocode autocode.RouterGroup
}
var RouterGroupApp = new(RouterGroup)