V2bX/main.go

17 lines
213 B
Go
Raw Normal View History

2022-06-01 13:35:41 -04:00
package main
2024-01-07 10:58:21 -05:00
import (
2024-01-26 23:19:55 -05:00
//"net/http"
//_ "net/http/pprof"
2024-01-07 10:58:21 -05:00
"github.com/InazumaV/V2bX/cmd"
)
2022-06-01 13:35:41 -04:00
func main() {
2024-01-26 23:19:55 -05:00
//内存泄漏排查
//go func() {
// http.ListenAndServe("127.0.0.1:6060", nil)
//}()
2023-05-23 22:26:14 -04:00
cmd.Run()
2022-06-01 13:35:41 -04:00
}