mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
12 lines
130 B
Go
12 lines
130 B
Go
//go:build debug
|
|
|
|
package sing
|
|
|
|
import (
|
|
"net/http"
|
|
_ "net/http/pprof"
|
|
)
|
|
|
|
func init() {
|
|
go http.ListenAndServe(":8964", nil)
|
|
}
|