aboutsummaryrefslogtreecommitdiffstats
path: root/src/finder.rs
blob: da88beb84937049f63a9a06e151ee6ee84531349 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
    }
}