Skip to main content

libgrite_cli/
sync.rs

1use crate::context::GriteContext;
2use crate::types::*;
3use libgrite_core::GriteError;
4
5/// Sync with remote repository.
6pub fn sync(ctx: &GriteContext, opts: &SyncOptions) -> Result<SyncResult, GriteError> {
7    let _ = ctx;
8    let _ = opts;
9    todo!("sync not yet implemented in library")
10}