1Panel/core/router/common.go

14 lines
209 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{},
&CommandRouter{},
&HostRouter{},
&GroupRouter{},
2024-07-19 19:04:11 +08:00
}
}