diff options
| author | Sanaei <ho3ein.sanaei@gmail.com> | 2025-09-09 02:22:43 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-09-09 03:32:05 +0300 |
| commit | fe9f0d1d0e86f55a97e3905358888f595b9bd08b (patch) | |
| tree | 2210606a64b38e89edf4197268957913efbb7f06 /web/controller/xui.go | |
| parent | 18d74d54caa5f55b8d9048b49ad28b42be31b322 (diff) | |
api (#3434)
Diffstat (limited to 'web/controller/xui.go')
| -rw-r--r-- | web/controller/xui.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web/controller/xui.go b/web/controller/xui.go index 5b4c0a18..1afbc427 100644 --- a/web/controller/xui.go +++ b/web/controller/xui.go @@ -8,6 +8,7 @@ type XUIController struct { BaseController inboundController *InboundController + serverController *ServerController settingController *SettingController xraySettingController *XraySettingController } @@ -28,6 +29,7 @@ func (a *XUIController) initRouter(g *gin.RouterGroup) { g.GET("/xray", a.xraySettings) a.inboundController = NewInboundController(g) + a.serverController = NewServerController(g) a.settingController = NewSettingController(g) a.xraySettingController = NewXraySettingController(g) } |
