代码拉取完成,页面将自动刷新
package main
import (
"fmt"
"helloworld/hello"
"net/http"
)
func main() {
fmt.Println("into main")
http.Handle("/", new(hello.HelloHandler))
http.Handle("/hello", new(hello.HelloHandler))
http.Handle("/print/startup", new(hello.PrintStartParam))
http.Handle("/print/env", new(hello.EnvParam))
http.Handle("/ping", new(hello.Pong))
http.Handle("/ping/v1.0.1", new(hello.PongV2))
http.Handle("/ping/v1.0.2", new(hello.PongV2ex))
http.Handle("/health", new(hello.HealthHandler))
http.Handle("/healthz", new(hello.HealthzHandler))
http.Handle("/print/config/appinfo", new(hello.PrintAppInfo))
http.Handle("/print/config/authorinfo", new(hello.PrintAuthorInfo))
http.Handle("/op/redis", new(hello.RedisHandler))
http.Handle("/resource/cpu", new(hello.Cpu))
go http.ListenAndServeTLS(":443", "cert/tls.crt", "cert/tls.key", nil)
http.ListenAndServe(":80", nil)
// http.ListenAndServeTLS()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。