diff --git a/article_scraper/src/clean.rs b/article_scraper/src/clean.rs new file mode 100644 index 0000000..d1f5951 --- /dev/null +++ b/article_scraper/src/clean.rs @@ -0,0 +1,5 @@ +use crate::full_text_parser::error::FullTextParserError; + +pub fn clean_html(_html: &str) -> Result { + unimplemented!(); +} diff --git a/article_scraper/src/lib.rs b/article_scraper/src/lib.rs index 9e14fb8..e151eb7 100644 --- a/article_scraper/src/lib.rs +++ b/article_scraper/src/lib.rs @@ -1,4 +1,5 @@ mod article; +pub mod clean; mod constants; mod error; mod full_text_parser;