fix the docsite URL (#5173)

This commit is contained in:
Ming Deng 2023-03-09 15:06:38 +08:00 committed by Ming Deng
parent f1dea5b811
commit daa85868f5
2 changed files with 5 additions and 3 deletions

View File

@ -17,11 +17,12 @@ Beego is composed of four parts:
## Quick Start ## Quick Start
[Doc](https://github.com/beego/beedoc) [Old Doc - github](https://github.com/beego/beedoc)
[中文新版文档网站](https://beego.gocn.vip) [New Doc Website](https://beego.gocn.vip)
[Example](https://github.com/beego/beego-example) [Example](https://github.com/beego/beego-example)
> Kindly remind that sometimes the HTTPS certificate is expired, you may get some NOT SECURE warning
### Web Application ### Web Application
![Http Request](https://cdn.nlark.com/yuque/0/2020/png/755700/1607857462507-855ec543-7ce3-402d-a0cb-b2524d5a4b60.png) ![Http Request](https://cdn.nlark.com/yuque/0/2020/png/755700/1607857462507-855ec543-7ce3-402d-a0cb-b2524d5a4b60.png)

View File

@ -37,6 +37,7 @@ var defaultCodeRegistry = &codeRegistry{
func DefineCode(code uint32, module string, name string, desc string) Code { func DefineCode(code uint32, module string, name string, desc string) Code {
res := &codeDefinition{ res := &codeDefinition{
code: code, code: code,
name: name,
module: module, module: module,
desc: desc, desc: desc,
} }