Move code around.

This commit is contained in:
2018-12-18 13:33:53 +01:00
parent 97103a9775
commit 9bf1d22876
7 changed files with 93 additions and 66 deletions

15
src/probe.rs Normal file
View File

@@ -0,0 +1,15 @@
mod eniro;
mod hitta;
mod konsument_info;
mod telefonforsaljare;
mod vem_ringde;
pub use self::eniro::Eniro;
pub use self::hitta::Hitta;
pub use self::konsument_info::KonsumentInfo;
pub use self::telefonforsaljare::Telefonforsaljare;
pub use self::vem_ringde::VemRingde;
pub trait Probe {
fn search(&mut self, _: &str);
}