Files
gf/geg/net/ghttp/server/pprof.go
2019-04-03 00:03:46 +08:00

16 lines
232 B
Go

package main
import (
"github.com/gogf/gf/g/net/ghttp"
)
func main() {
s := ghttp.GetServer()
s.EnablePprof()
s.BindHandler("/", func(r *ghttp.Request) {
r.Response.Writeln("哈喽世界!")
})
s.SetPort(8199)
s.Run()
}