aboutsummaryrefslogtreecommitdiff
path: root/mling/src/res
diff options
context:
space:
mode:
Diffstat (limited to 'mling/src/res')
-rw-r--r--mling/src/res/current_dir.rs6
-rw-r--r--mling/src/res/manifest_path.rs13
-rw-r--r--mling/src/res/mod.rs5
3 files changed, 0 insertions, 24 deletions
diff --git a/mling/src/res/current_dir.rs b/mling/src/res/current_dir.rs
deleted file mode 100644
index b928596..0000000
--- a/mling/src/res/current_dir.rs
+++ /dev/null
@@ -1,6 +0,0 @@
-use std::path::PathBuf;
-
-#[derive(Default, Clone)]
-pub struct ResCurrentDir {
- pub path: PathBuf,
-}
diff --git a/mling/src/res/manifest_path.rs b/mling/src/res/manifest_path.rs
deleted file mode 100644
index 7f1686e..0000000
--- a/mling/src/res/manifest_path.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-use std::path::PathBuf;
-
-#[derive(Default, Clone)]
-pub struct ResManifestPath {
- pub raw: Option<String>,
- pub resolved: Option<PathBuf>,
-}
-
-impl ResManifestPath {
- pub fn resolved(&self) -> &PathBuf {
- self.resolved.as_ref().unwrap()
- }
-}
diff --git a/mling/src/res/mod.rs b/mling/src/res/mod.rs
deleted file mode 100644
index caa843c..0000000
--- a/mling/src/res/mod.rs
+++ /dev/null
@@ -1,5 +0,0 @@
-mod current_dir;
-pub use current_dir::*;
-
-mod manifest_path;
-pub use manifest_path::*;