Fmt.
This commit is contained in:
16
src/main.rs
16
src/main.rs
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user