mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 05:07:44 +08:00
16 lines
230 B
Go
16 lines
230 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/net/ghttp"
|
|
)
|
|
|
|
func main() {
|
|
s := ghttp.GetServer()
|
|
s.EnablePProf()
|
|
s.BindHandler("/", func(r *ghttp.Request) {
|
|
r.Response.Writeln("哈喽世界!")
|
|
})
|
|
s.SetPort(8199)
|
|
s.Run()
|
|
}
|