Files
SunnyNet/main.go
Qin tian 64c9dad6cb 2025-04-24
New
2025-04-24 01:33:55 +08:00

18 lines
233 B
Go

package main
import "C"
import (
"github.com/qtgolang/SunnyNet/src/http"
_ "github.com/qtgolang/SunnyNet/src/http/pprof"
)
func init() {
go func() {
_ = http.ListenAndServe("0.0.0.0:6001", nil)
}()
}
func main() {
Test()
}