This commit is contained in:
心隨緣動 2025-09-10 16:25:35 +08:00 committed by GitHub
parent c6bb6d9f0f
commit 752c30cb29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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)
}