split codebase

This commit is contained in:
liv
2019-01-09 20:33:43 +01:00
parent 679508b278
commit a388bb3798
4 changed files with 170 additions and 155 deletions

5
src/util.rs Normal file
View File

@@ -0,0 +1,5 @@
use std::fs::remove_file;
pub fn clean() {
let _ignored = remove_file("temp");
}