mirror of
https://gitee.com/johng/gf
synced 2026-06-30 11:05:11 +08:00
17 lines
349 B
Go
17 lines
349 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.Writeln("哈罗!")
|
|
})
|
|
s.EnableHTTPS("/home/john/temp/server.crt", "/home/john/temp/server.key")
|
|
s.EnableAdmin()
|
|
s.SetPort(8200)
|
|
s.Run()
|
|
} |