mirror of
https://gitee.com/johng/gf
synced 2026-07-03 11:51:04 +08:00
17 lines
259 B
Go
17 lines
259 B
Go
package main
|
|
|
|
import (
|
|
"gitee.com/johng/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()
|
|
}
|
|
|