mirror of
https://gitee.com/johng/gf
synced 2026-07-04 21:03:13 +08:00
15 lines
219 B
Go
15 lines
219 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/net/ghttp"
|
|
)
|
|
|
|
func main() {
|
|
s := ghttp.GetServer()
|
|
s.BindHandler("/", func(r *ghttp.Request) {
|
|
r.Response.Writeln("go frame!")
|
|
})
|
|
s.SetPort(8100, 8200, 8300)
|
|
s.Run()
|
|
}
|