This commit is contained in:
心隨緣動
2025-09-10 16:25:35 +08:00
committed by GitHub
parent c6bb6d9f0f
commit 752c30cb29
+2
View File
@@ -8,6 +8,7 @@ type XUIController struct {
BaseController
inboundController *InboundController
serverController *ServerController
settingController *SettingController
xraySettingController *XraySettingController
}
@@ -29,6 +30,7 @@ func (a *XUIController) initRouter(g *gin.RouterGroup) {
g.GET("/navigation", a.navigation)
a.inboundController = NewInboundController(g)
a.serverController = NewServerController(g)
a.settingController = NewSettingController(g)
a.xraySettingController = NewXraySettingController(g)
}