1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-21 09:19:16 +08:00
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
}
}