14 lines
267 B
Go
14 lines
267 B
Go
package router
|
|
|
|
import (
|
|
"git.echol.cn/loser/Go-Web-Template/server/router/common"
|
|
"git.echol.cn/loser/Go-Web-Template/server/router/system"
|
|
)
|
|
|
|
var RouterGroupApp = new(RouterGroup)
|
|
|
|
type RouterGroup struct {
|
|
System system.RouterGroup
|
|
Common common.RouterGroup
|
|
}
|