mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 05:07:44 +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()
|
|
}
|