From 4ecbcf62f558d0c1acbbfb2daf9aa7a39fad2e74 Mon Sep 17 00:00:00 2001 From: yuzuki999 Date: Mon, 25 Sep 2023 15:31:26 +0800 Subject: [PATCH] fix bug --- core/sing/sing.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/sing/sing.go b/core/sing/sing.go index f230d49..4165684 100644 --- a/core/sing/sing.go +++ b/core/sing/sing.go @@ -3,14 +3,9 @@ package sing import ( "context" "fmt" - "github.com/goccy/go-json" - "io" - "os" - "runtime/debug" - "time" - "github.com/InazumaV/V2bX/conf" vCore "github.com/InazumaV/V2bX/core" + "github.com/goccy/go-json" "github.com/inazumav/sing-box/adapter" "github.com/inazumav/sing-box/inbound" "github.com/inazumav/sing-box/log" @@ -21,6 +16,11 @@ import ( E "github.com/sagernet/sing/common/exceptions" F "github.com/sagernet/sing/common/format" "github.com/sagernet/sing/service" + "github.com/sagernet/sing/service/pause" + "io" + "os" + "runtime/debug" + "time" ) var _ adapter.Service = (*Box)(nil)