diff --git a/web/service/inbound.go b/web/service/inbound.go index e3d240bd..f6f3e871 100644 --- a/web/service/inbound.go +++ b/web/service/inbound.go @@ -23,7 +23,7 @@ import ( // It handles CRUD operations for inbounds, client management, traffic monitoring, // and integration with the Xray API for real-time updates. type InboundService struct { - xrayApi xray.XrayAPI + xrayApi xray.XrayAPI speedLimitService SpeedLimitService } diff --git a/web/service/speedlimit.go b/web/service/speedlimit.go index 66374dc5..9fe4485a 100644 --- a/web/service/speedlimit.go +++ b/web/service/speedlimit.go @@ -225,4 +225,3 @@ func (s *SpeedLimitService) RestoreAllLimits(inbounds []*model.Inbound) { } } } -