mirror of
https://gitee.com/johng/gf
synced 2026-06-07 02:12:11 +08:00
18 lines
318 B
Go
18 lines
318 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/g"
|
|
"github.com/gogf/gf/g/net/ghttp"
|
|
)
|
|
|
|
func main() {
|
|
s := g.Server()
|
|
s.BindHandler("/", func(r *ghttp.Request) {
|
|
r.Response.Writeln("哈罗!")
|
|
})
|
|
s.EnableHTTPS("/home/john/temp/server.crt", "/home/john/temp/server.key")
|
|
s.EnableAdmin()
|
|
s.SetPort(8200)
|
|
s.Run()
|
|
}
|