1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-02-01 06:28:06 +08:00
1Panel/core/router/common.go

15 lines
233 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{},
&AppLauncherRouter{},
2024-07-19 19:04:11 +08:00
}
}