summaryrefslogtreecommitdiffstats
path: root/src/finder.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/finder.rs')
-rw-r--r--src/finder.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/finder.rs b/src/finder.rs
new file mode 100644
index 0000000..da88beb
--- /dev/null
+++ b/src/finder.rs
@@ -0,0 +1,15 @@
+use std::ops::Deref;
+
+pub use config::Config;
+
+mod config;
+
+pub struct Finder(Config);
+
+impl Deref for Finder {
+ type Target = Config;
+
+ fn deref(&self) -> &Self::Target {
+ &self.0
+ }
+}