1use crate::context::GriteContext;
2use crate::types::*;
3use libgrite_core::GriteError;
4
5pub fn doctor(ctx: &GriteContext, opts: &DoctorOptions) -> Result<DoctorResult, GriteError> {
7 let _ = ctx;
8 let _ = opts;
9 todo!("doctor not yet implemented in library")
10}