1Panel/core/router/common.go

11 lines
154 B
Go
Raw Normal View History

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