Refine geosite

This commit is contained in:
世界 2022-04-15 19:30:31 +08:00
parent 5991cfc072
commit 12408d60a0
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
27 changed files with 739 additions and 263 deletions

12
debug.go Normal file
View file

@ -0,0 +1,12 @@
//go:build debug
package sing
import (
"net/http"
_ "net/http/pprof"
)
func init() {
go http.ListenAndServe(":8964", nil)
}