aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart-core/src/util/filesystem.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart-core/src/util/filesystem.rs')
-rw-r--r--crates/mozart-core/src/util/filesystem.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/crates/mozart-core/src/util/filesystem.rs b/crates/mozart-core/src/util/filesystem.rs
new file mode 100644
index 0000000..efcb0fb
--- /dev/null
+++ b/crates/mozart-core/src/util/filesystem.rs
@@ -0,0 +1,8 @@
+#[derive(Default)]
+pub struct Filesystem;
+
+impl Filesystem {
+ pub fn new() -> Self {
+ Self {}
+ }
+}