rvc-lib

Crates.iorvc-lib
lib.rsrvc-lib
version0.2.0
sourcesrc
created_at2023-04-10 11:46:59.771893
updated_at2023-04-13 13:13:12.304133
descriptionThe library that rvc uses for version control.
homepagehttps://github.com/gluzandii/rvc-lib
repositoryhttps://github.com/gluzandii/rvc-lib
max_upload_size
id835069
size55,601
Sushant Nariangadu (gluzandii)

documentation

README

RVC-LIB

rvc-lib is the library that is used by rvc for its version control.

To create a repository

use rvc_lib::repo::Repo;
fn main() {
    let repo = Repo::create_repo("path/to/repo", Some("Name of the repo"), Some("Description of the repo")).expect("Failed to create repo");
}

To open a repository

use rvc_lib::repo::Repo;
fn main() {
    let repo = Repo::open_repo("path/to/repo").expect("Failed to open repo");
}
Commit count: 0

cargo fmt