(value time.Time)
| 550 | } |
| 551 | |
| 552 | func formatAgentTime(value time.Time) string { |
| 553 | if value.IsZero() { |
| 554 | return "-" |
| 555 | } |
| 556 | return strconv.FormatInt(value.UTC().Unix(), 10) |
| 557 | } |
| 558 | |
| 559 | func firstCLIValue(values ...string) string { |
| 560 | for _, value := range values { |
no test coverage detected