kimun 0.20.0

Code metrics tool — health score, complexity, duplication, hotspots, ownership
1
2
3
4
5
6
7
8
use std::error::Error;

use super::ProjectReport;
use crate::report_helpers;

pub fn print_json(report: &ProjectReport) -> Result<(), Box<dyn Error>> {
    report_helpers::print_json_stdout(report)
}