update Sing and Xray core

This commit is contained in:
wyx2685
2024-01-08 00:58:21 +09:00
parent 16221d17fb
commit c4d404d979
5 changed files with 23 additions and 16 deletions

11
main.go
View File

@@ -1,7 +1,16 @@
package main
import "github.com/InazumaV/V2bX/cmd"
import (
_ "net/http"
_ "net/http/pprof"
"github.com/InazumaV/V2bX/cmd"
)
func main() {
//内存泄漏排查
// go func() {
// http.ListenAndServe("0.0.0.0:6060", nil)
// }()
cmd.Run()
}