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;

/// Sync with remote repository.
pub fn sync(ctx: &GriteContext, opts: &SyncOptions) -> Result<SyncResult, GriteError> {
    let _ = ctx;
    let _ = opts;
    todo!("sync not yet implemented in library")
}