Files
go-gin-api/pkg/trace/debug.go
T
2021-02-02 20:42:51 +08:00

8 lines
222 B
Go

package trace
type Debug struct {
Key string `json:"key"` // 标示
Value interface{} `json:"value"` // 值
CostSeconds float64 `json:"cost_seconds"` // 执行时间(单位秒)
}