bug fix: config items

This commit is contained in:
suguo.yao 2022-12-16 22:01:32 +08:00
parent de5704b90e
commit a58cb65486
1 changed files with 4 additions and 1 deletions

View File

@ -1,8 +1,11 @@
package gin
//GIN 配置
// GIN 配置
type Config struct {
RootPath string
Addr string
Port int
Ssl bool
SslPem string
SslKey string
}