V2bX/main.go
2024-01-25 23:06:37 +09:00

16 lines
200 B
Go

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