aboutsummaryrefslogtreecommitdiff
path: root/mling/src/res/manifest_path.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mling/src/res/manifest_path.rs')
-rw-r--r--mling/src/res/manifest_path.rs13
1 files changed, 0 insertions, 13 deletions
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()
- }
-}