base-golang/pkg/trace/debug.go
2024-07-23 10:23:43 +08:00

8 lines
210 B
Go

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