1 Star 0 Fork 6

nick/helloworld

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.go 907 Bytes
一键复制 编辑 原始数据 按行查看 历史
nick 提交于 2022-12-14 15:24 . 添加:自签证书与https服务
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()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/nickdemo/helloworld.git
git@gitee.com:nickdemo/helloworld.git
nickdemo
helloworld
helloworld
master

搜索帮助