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/xray
diff options
context:
space:
mode:
authormhsanaei <ho3ein.sanaei@gmail.com>2025-09-19 11:05:43 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2025-09-19 11:05:43 +0300
commit7447cec17ed6735c3faf44e88d47dd71a81e9643 (patch)
treedfad5363d38069a0dd9bc568d42c689dd1eb57f2 /xray
parent0ffd27c0aaa78196c015d112ad1ce96cccbb262d (diff)
go package correction v2
Diffstat (limited to 'xray')
-rw-r--r--xray/api.go4
-rw-r--r--xray/config.go2
-rw-r--r--xray/inbound.go2
-rw-r--r--xray/log_writer.go2
-rw-r--r--xray/process.go6
5 files changed, 8 insertions, 8 deletions
diff --git a/xray/api.go b/xray/api.go
index 2a220e67..d7ca4114 100644
--- a/xray/api.go
+++ b/xray/api.go
@@ -8,8 +8,8 @@ import (
"regexp"
"time"
- "github.com/mhsanaei/3x-ui/logger"
- "github.com/mhsanaei/3x-ui/util/common"
+ "github.com/mhsanaei/3x-ui/v2/logger"
+ "github.com/mhsanaei/3x-ui/v2/util/common"
"github.com/xtls/xray-core/app/proxyman/command"
statsService "github.com/xtls/xray-core/app/stats/command"
diff --git a/xray/config.go b/xray/config.go
index 041036b8..b10592d0 100644
--- a/xray/config.go
+++ b/xray/config.go
@@ -3,7 +3,7 @@ package xray
import (
"bytes"
- "github.com/mhsanaei/3x-ui/util/json_util"
+ "github.com/mhsanaei/3x-ui/v2/util/json_util"
)
type Config struct {
diff --git a/xray/inbound.go b/xray/inbound.go
index db1d421c..5a328f31 100644
--- a/xray/inbound.go
+++ b/xray/inbound.go
@@ -3,7 +3,7 @@ package xray
import (
"bytes"
- "github.com/mhsanaei/3x-ui/util/json_util"
+ "github.com/mhsanaei/3x-ui/v2/util/json_util"
)
type InboundConfig struct {
diff --git a/xray/log_writer.go b/xray/log_writer.go
index 2e30c922..3be39b3e 100644
--- a/xray/log_writer.go
+++ b/xray/log_writer.go
@@ -5,7 +5,7 @@ import (
"runtime"
"strings"
- "github.com/mhsanaei/3x-ui/logger"
+ "github.com/mhsanaei/3x-ui/v2/logger"
)
func NewLogWriter() *LogWriter {
diff --git a/xray/process.go b/xray/process.go
index c8c7bb30..0df9c44b 100644
--- a/xray/process.go
+++ b/xray/process.go
@@ -13,9 +13,9 @@ import (
"syscall"
"time"
- "github.com/mhsanaei/3x-ui/config"
- "github.com/mhsanaei/3x-ui/logger"
- "github.com/mhsanaei/3x-ui/util/common"
+ "github.com/mhsanaei/3x-ui/v2/config"
+ "github.com/mhsanaei/3x-ui/v2/logger"
+ "github.com/mhsanaei/3x-ui/v2/util/common"
)
func GetBinaryName() string {