You cannot 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 router
|
|
|
|
import (
|
|
"pychr/router/example"
|
|
"pychr/router/goods"
|
|
"pychr/router/system"
|
|
)
|
|
|
|
type RouterGroup struct {
|
|
System system.RouterGroup
|
|
Example example.RouterGroup
|
|
Goods goods.RouterGroup
|
|
}
|
|
|
|
var RouterGroupApp = new(RouterGroup)
|