This commit is contained in:
2018-12-18 11:06:45 +01:00
parent 5e84285e94
commit f6e9a0daa6

View File

@@ -39,36 +39,28 @@ impl Probe for Hitta {
struct Eniro; struct Eniro;
impl Probe for Eniro { impl Probe for Eniro {
fn search(&mut self, _: &str) { fn search(&mut self, _: &str) {}
}
} }
// http://vemringde.se/?q={} // http://vemringde.se/?q={}
struct VemRingde; struct VemRingde;
impl Probe for VemRingde { impl Probe for VemRingde {
fn search(&mut self, _: &str) { fn search(&mut self, _: &str) {}
}
} }
// http://www.telefonforsaljare.nu/telefonnummer/{}/ // http://www.telefonforsaljare.nu/telefonnummer/{}/
struct Telefonforsaljare; struct Telefonforsaljare;
impl Probe for Telefonforsaljare { impl Probe for Telefonforsaljare {
fn search(&mut self, _: &str) { fn search(&mut self, _: &str) {}
}
} }
// http://konsumentinfo.se/telefonnummer/sverige/{} // http://konsumentinfo.se/telefonnummer/sverige/{}
struct KonsumentInfo; struct KonsumentInfo;
impl Probe for KonsumentInfo { impl Probe for KonsumentInfo {
fn search(&mut self, _: &str) { fn search(&mut self, _: &str) {}
}
} }
fn main() { fn main() {