mirror of
https://gitee.com/johng/gf
synced 2026-07-04 13:02:36 +08:00
18 lines
323 B
Go
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()
|
|
} |