procop 0.1.0

Under development! A tool that will setup projects by copying files into it.
Documentation
1
2
3
4
5
6
7
8
9
10
use procop::config::{DataSource, FileType, SourceType};
use std::vec;

fn main() {
    let source = DataSource {
        source_type: SourceType::Git("git@gitlab.xarif.de:thomass/procop.git".to_string()),
        file_type: FileType::Plain,
    };
    let sources = vec![source];
}