mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 13:18:01 +08:00
15 lines
243 B
Go
15 lines
243 B
Go
package main
|
|
|
|
import (
|
|
"gitee.com/johng/gf/g"
|
|
"gitee.com/johng/gf/g/net/ghttp"
|
|
)
|
|
|
|
func main() {
|
|
s := g.Server()
|
|
s.BindHandler("/", func(r *ghttp.Request){
|
|
r.Response.Write("123")
|
|
})
|
|
s.SetPort(8199)
|
|
s.Run()
|
|
} |