1use pkgcruft::report::Report; 2 3tonic::include_proto!("pkgcruft"); 4 5impl From<Report> for StringResponse { 6 fn from(value: Report) -> Self { 7 Self { data: value.to_json() } 8 } 9}