rootasrole_core/plugin/mod.rs
1#[cfg(feature = "finder")]
2mod hashchecker;
3#[cfg(feature = "finder")]
4mod hierarchy;
5#[cfg(feature = "finder")]
6mod ssd;
7
8pub fn register_plugins() {
9 #[cfg(feature = "finder")]
10 hashchecker::register();
11 #[cfg(feature = "finder")]
12 ssd::register();
13 #[cfg(feature = "finder")]
14 hierarchy::register();
15}