Documentation ¶
Index ¶
Constants ¶
View Source
const VERSION = "1.1.0"
VERSION 版本号
Variables ¶
This section is empty.
Functions ¶
func GetAPIResponse ¶
GetAPIResponse 获取 API 响应对象
Types ¶
type Config ¶
type Config struct { Name string // 服务名称,必填 Version string // 服务版本,必填 Host string // 域名主机 IP string // 运行地址,必填 BroadcastIP string // 广播的运行地址,默认为:IP Port int // 运行端口,必填 BroadcastPort int // 广播的运行端口,默认为:Port Timeout int // 优雅退出时的超时机制,默认:30秒 Debug bool // 是否开启调试 Pprof bool // 是否监控性能 LogLevel string // logger 日志级别,支持:trace、debug、info、warn、error、fatal、panic,默认:info IsDisableSignal bool // 是否关闭 signal 信号监听退出,默认:false,设置为 true 时,需主动调用 gins.Stop() 来触发优雅退出 On500 gin.RecoveryFunc // 自定义 500 处理,相当于 panic 的 recover 处理 On404 gin.HandlerFunc // 自定义 404 处理 // contains filtered or unexported fields }
Config 服务器配置
Source Files ¶
Click to show internal directories.
Click to hide internal directories.