(buildTime string)
| 194 | } |
| 195 | |
| 196 | func reformatDate(buildTime string) string { |
| 197 | t, errTime := time.Parse(time.RFC3339Nano, buildTime) |
| 198 | if errTime == nil { |
| 199 | return t.Format(time.ANSIC) |
| 200 | } |
| 201 | return buildTime |
| 202 | } |
| 203 | |
| 204 | func arch() string { |
| 205 | out := runtime.GOARCH |
no outgoing calls
no test coverage detected
searching dependent graphs…