1Panel/core/router/common.go

10 lines
135 B
Go
Raw Normal View History

2024-07-19 19:04:11 +08:00
package router
func commonGroups() []CommonRouter {
return []CommonRouter{
&BaseRouter{},
&LogRouter{},
&SettingRouter{},
}
}