summaryrefslogtreecommitdiffstats
path: root/src/finder.rs
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-11-02 17:48:10 -0500
committerToby Vincent <tobyv13@gmail.com>2022-11-02 17:48:10 -0500
commit53d0cefcb1ca3527935479cc07a6f5fe5b1f8051 (patch)
tree307ba4005e9ffe95396f07750871b6e44b4e502e /src/finder.rs
parent1334d9f1d08a27ea7fa4cd4228ac1fdf44bdd552 (diff)
feat: finish implementing config and cli
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
+ }
+}