Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authormhsanaei <ho3ein.sanaei@gmail.com>2025-09-24 12:44:02 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2025-09-24 12:44:02 +0300
commitadf3242602668a57a6113a681b1331181b412cda (patch)
treec875d88a6b45c808f2b730264e7863306e39b439 /web
parent3f62592e4b98c38d2164c9949ed971ed5d2b21cc (diff)
bug fix
Diffstat (limited to 'web')
-rw-r--r--web/web.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/web/web.go b/web/web.go
index c256112c..a590e50b 100644
--- a/web/web.go
+++ b/web/web.go
@@ -96,7 +96,6 @@ type Server struct {
listener net.Listener
index *controller.IndexController
- server *controller.ServerController
panel *controller.XUIController
api *controller.APIController
@@ -264,7 +263,6 @@ func (s *Server) initRouter() (*gin.Engine, error) {
g := engine.Group(basePath)
s.index = controller.NewIndexController(g)
- s.server = controller.NewServerController(g)
s.panel = controller.NewXUIController(g)
s.api = controller.NewAPIController(g)