mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08:00
17 lines
416 B
Go
17 lines
416 B
Go
package main
|
|
|
|
import (
|
|
"gitee.com/johng/gf/g"
|
|
"gitee.com/johng/gf/g/net/ghttp"
|
|
)
|
|
|
|
func main() {
|
|
s := g.Server()
|
|
s.BindStatusHandlerByMap(map[int]ghttp.HandlerFunc {
|
|
403 : func(r *ghttp.Request){r.Response.Writeln("403")},
|
|
404 : func(r *ghttp.Request){r.Response.Writeln("404")},
|
|
500 : func(r *ghttp.Request){r.Response.Writeln("500")},
|
|
})
|
|
s.SetPort(8199)
|
|
s.Run()
|
|
} |