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;

/// Rebuild local database from events.
pub fn rebuild(ctx: &GriteContext, opts: &RebuildOptions) -> Result<RebuildResult, GriteError> {
    let _ = ctx;
    let _ = opts;
    todo!("rebuild not yet implemented in library")
}