debug.go 210 B

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