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

10
src/probe/eniro.rs Normal file
View File

@@ -0,0 +1,10 @@
use scraper::{Html, Selector};
use crate::probe::Probe;
// https://gulasidorna.eniro.se/hitta:{}
pub struct Eniro;
impl Probe for Eniro {
fn search(&mut self, _: &str) {}
}