data-modelling-core 2.4.0

Core SDK library for model operations across platforms
Documentation
1
2
3
4
5
6
7
8
9
10
//! Git operations for managing Git repositories
//!
//! Provides Git repository management (init, open, commit, push, status) that can be used
//! by both the API and native app.

#[cfg(feature = "git")]
mod git_service;

#[cfg(feature = "git")]
pub use git_service::{GitCredentials, GitError, GitService, GitStatus};