mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 09:58:14 -05:00
17 lines
213 B
Go
17 lines
213 B
Go
package main
|
|
|
|
import (
|
|
//"net/http"
|
|
//_ "net/http/pprof"
|
|
|
|
"github.com/InazumaV/V2bX/cmd"
|
|
)
|
|
|
|
func main() {
|
|
//内存泄漏排查
|
|
//go func() {
|
|
// http.ListenAndServe("127.0.0.1:6060", nil)
|
|
//}()
|
|
cmd.Run()
|
|
}
|