mirror of
https://github.com/xinliangnote/go-gin-api.git
synced 2024-04-21 12:31:46 +00:00
8 lines
222 B
Go
8 lines
222 B
Go
package trace
|
|
|
|
type Debug struct {
|
|
Key string `json:"key"` // 标示
|
|
Value interface{} `json:"value"` // 值
|
|
CostSeconds float64 `json:"cost_seconds"` // 执行时间(单位秒)
|
|
}
|