package router import ( "server/router/devices" "server/router/example" "server/router/project" "server/router/system" ) type RouterGroup struct { System system.RouterGroup Example example.RouterGroup Project project.RouterGroup Devices devices.RouterGroup } var RouterGroupApp = new(RouterGroup)