You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
525 B
20 lines
525 B
package publish |
|
|
|
// Dashboard for dashboard. |
|
type Dashboard struct { |
|
Name string `json:"name"` |
|
Label string `json:"label"` |
|
Commit string `json:"commit"` |
|
OutURL string `json:"out_url"` |
|
CoverageURL string `json:"coverage_url"` |
|
TextSizeArm64 int64 `json:"text_size_arm64"` |
|
ResSize int64 `json:"res_size"` |
|
Logs []*Log `json:"logs"` |
|
Extra string `json:"extra"` |
|
} |
|
|
|
// Log from Dashboard. |
|
type Log struct { |
|
Level string `json:"level"` |
|
Msg string `json:"msg"` |
|
}
|
|
|