Files
gf/geg/net/ghttp/hello.go
2018-04-17 14:20:02 +08:00

18 lines
323 B
Go

package main
import (
//"gitee.com/johng/gf/g/net/ghttp"
_"net/http/pprof"
"log"
"net/http"
"gitee.com/johng/gf/g/net/ghttp"
)
func main() {
s := ghttp.GetServer()
s.BindHandler("/", func(r *ghttp.Request){
r.Response.Writeln("哈喽世界!")
})
s.SetPort(8199)
s.Run()
}