(out io.Writer, value any)
| 258 | } |
| 259 | |
| 260 | func printJSON(out io.Writer, value any) error { |
| 261 | enc := json.NewEncoder(out) |
| 262 | enc.SetIndent("", " ") |
| 263 | return enc.Encode(value) |
| 264 | } |
| 265 | |
| 266 | func BlameFile(db *sql.DB, runID, filePath string, out io.Writer) error { |
| 267 | manifest, err := BuildBlameFile(db, runID, filePath) |
no outgoing calls
no test coverage detected