mirror of
https://github.com/qtgolang/SunnyNet.git
synced 2026-08-30 22:11:29 -07:00
18 lines
233 B
Go
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()
|
|
}
|