snippet/gin/config.go

12 lines
147 B
Go
Raw Normal View History

2021-12-03 03:36:40 +00:00
package gin
2022-12-16 14:01:32 +00:00
// GIN 配置
2021-12-03 03:36:40 +00:00
type Config struct {
RootPath string
Addr string
Port int
2022-12-16 14:01:32 +00:00
Ssl bool
SslPem string
SslKey string
2021-12-03 03:36:40 +00:00
}