rgit/src/data.rs

9 lines
139 B
Rust
Raw Normal View History

2020-09-27 14:52:54 +02:00
use std::fs;
static RGIT_DIR: &'static str = ".rgit";
pub fn init() -> std::io::Result<()> {
fs::create_dir(RGIT_DIR)?;
Ok(())
}