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;
impl Probe for Eniro {
fn search(&mut self, _: &str) {
}
fn search(&mut self, _: &str) {}
}
// http://vemringde.se/?q={}
struct VemRingde;
impl Probe for VemRingde {
fn search(&mut self, _: &str) {
}
fn search(&mut self, _: &str) {}
}
// http://www.telefonforsaljare.nu/telefonnummer/{}/
struct Telefonforsaljare;
impl Probe for Telefonforsaljare {
fn search(&mut self, _: &str) {
}
fn search(&mut self, _: &str) {}
}
// http://konsumentinfo.se/telefonnummer/sverige/{}
struct KonsumentInfo;
impl Probe for KonsumentInfo {
fn search(&mut self, _: &str) {
}
fn search(&mut self, _: &str) {}
}
fn main() {