diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-09-18 23:06:01 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-09-19 00:12:14 +0300 |
| commit | 054cb1dea0d93062e89b915c22f9f318bd82f563 (patch) | |
| tree | a0b7b7d51dcc759f0f241f67bf2f12a65481f37a /xray | |
| parent | 3757ae0b119c0efe4e6d38a37cea353fb82b0c27 (diff) | |
go package correction
Diffstat (limited to 'xray')
| -rw-r--r-- | xray/api.go | 6 | ||||
| -rw-r--r-- | xray/config.go | 2 | ||||
| -rw-r--r-- | xray/inbound.go | 2 | ||||
| -rw-r--r-- | xray/log_writer.go | 2 | ||||
| -rw-r--r-- | xray/process.go | 6 |
5 files changed, 9 insertions, 9 deletions
diff --git a/xray/api.go b/xray/api.go index d68b1f96..2a220e67 100644 --- a/xray/api.go +++ b/xray/api.go @@ -4,12 +4,12 @@ import ( "context" "encoding/json" "fmt" + "math" "regexp" "time" - "math" - "x-ui/logger" - "x-ui/util/common" + "github.com/mhsanaei/3x-ui/logger" + "github.com/mhsanaei/3x-ui/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 a246b845..041036b8 100644 --- a/xray/config.go +++ b/xray/config.go @@ -3,7 +3,7 @@ package xray import ( "bytes" - "x-ui/util/json_util" + "github.com/mhsanaei/3x-ui/util/json_util" ) type Config struct { diff --git a/xray/inbound.go b/xray/inbound.go index ea11449d..db1d421c 100644 --- a/xray/inbound.go +++ b/xray/inbound.go @@ -3,7 +3,7 @@ package xray import ( "bytes" - "x-ui/util/json_util" + "github.com/mhsanaei/3x-ui/util/json_util" ) type InboundConfig struct { diff --git a/xray/log_writer.go b/xray/log_writer.go index d91ace3b..2e30c922 100644 --- a/xray/log_writer.go +++ b/xray/log_writer.go @@ -5,7 +5,7 @@ import ( "runtime" "strings" - "x-ui/logger" + "github.com/mhsanaei/3x-ui/logger" ) func NewLogWriter() *LogWriter { diff --git a/xray/process.go b/xray/process.go index 319f96d0..c8c7bb30 100644 --- a/xray/process.go +++ b/xray/process.go @@ -13,9 +13,9 @@ import ( "syscall" "time" - "x-ui/config" - "x-ui/logger" - "x-ui/util/common" + "github.com/mhsanaei/3x-ui/config" + "github.com/mhsanaei/3x-ui/logger" + "github.com/mhsanaei/3x-ui/util/common" ) func GetBinaryName() string { |
