1
0
Fork 0
mirror of https://gitlab.com/news-flash/article_scraper.git synced 2025-07-07 08:05:31 +02:00

empty clean html fn

This commit is contained in:
Jan Lukas Gernert 2023-04-16 22:00:00 +02:00
parent f427b7c36f
commit 3096f28aae
2 changed files with 6 additions and 0 deletions

View file

@ -0,0 +1,5 @@
use crate::full_text_parser::error::FullTextParserError;
pub fn clean_html(_html: &str) -> Result<String, FullTextParserError> {
unimplemented!();
}

View file

@ -1,4 +1,5 @@
mod article;
pub mod clean;
mod constants;
mod error;
mod full_text_parser;