publish.go 525 B

1234567891011121314151617181920
  1. package publish
  2. // Dashboard for dashboard.
  3. type Dashboard struct {
  4. Name string `json:"name"`
  5. Label string `json:"label"`
  6. Commit string `json:"commit"`
  7. OutURL string `json:"out_url"`
  8. CoverageURL string `json:"coverage_url"`
  9. TextSizeArm64 int64 `json:"text_size_arm64"`
  10. ResSize int64 `json:"res_size"`
  11. Logs []*Log `json:"logs"`
  12. Extra string `json:"extra"`
  13. }
  14. // Log from Dashboard.
  15. type Log struct {
  16. Level string `json:"level"`
  17. Msg string `json:"msg"`
  18. }