svn-cmd 0.1.0

this is a wrapper to svn command-line utility
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use thiserror;

pub struct SvnCmd {}

impl SvnCmd {
    pub fn commit(&self) {}
    pub fn checkout(&self) {}
    pub fn update(&self) {}
    pub fn log(&self) {}
    // pub fn status(&self) -> SvnStatus {}
    // pub fn info(&self) -> SvnInfo {}
}

pub struct SvnInfo {}
pub struct SvnStatus {}