diff options
| author | liv <liv@fastmail.com> | 2019-01-09 20:33:43 +0100 |
|---|---|---|
| committer | liv <liv@fastmail.com> | 2019-01-09 20:33:43 +0100 |
| commit | a388bb3798e2595c47924c6e4128f10e00cfc705 (patch) | |
| tree | 66b3503a37c567e7cee67a3522103a88541a6978 /src/util.rs | |
| parent | 679508b278643f5ce3796cafb512a03df61939c7 (diff) | |
split codebase
Diffstat (limited to 'src/util.rs')
| -rw-r--r-- | src/util.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/util.rs b/src/util.rs new file mode 100644 index 0000000..37a2028 --- /dev/null +++ b/src/util.rs @@ -0,0 +1,5 @@ +use std::fs::remove_file; + +pub fn clean() { + let _ignored = remove_file("temp"); +} |
