libgrite-cli 0.5.3

Programmatic CLI library for grite: issue tracking, sync, and context management
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::context::GriteContext;
use crate::types::*;
use libgrite_core::GriteError;

/// Run health checks.
pub fn doctor(ctx: &GriteContext, opts: &DoctorOptions) -> Result<DoctorResult, GriteError> {
    let _ = ctx;
    let _ = opts;
    todo!("doctor not yet implemented in library")
}