diff --git a/gin/config.go b/gin/config.go index 35826b8..0ff824b 100644 --- a/gin/config.go +++ b/gin/config.go @@ -1,8 +1,11 @@ package gin -//GIN 配置 +// GIN 配置 type Config struct { RootPath string Addr string Port int + Ssl bool + SslPem string + SslKey string }