V2bX/main.go

16 lines
200 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 (
_ "net/http/pprof"
"github.com/InazumaV/V2bX/cmd"
)
2022-06-01 13:35:41 -04:00
func main() {
2024-01-07 10:58:21 -05:00
//内存泄漏排查
// go func() {
2024-01-25 09:06:37 -05:00
// http.ListenAndServe("127.0.0.1:6060", nil)
2024-01-07 10:58:21 -05:00
// }()
2023-05-23 22:26:14 -04:00
cmd.Run()
2022-06-01 13:35:41 -04:00
}