findtext_doc 0.1.0

Search text in Document
Documentation
1
2
3
4
5
6
7
8
mod core;

use core::search::handle;

/// entry point
pub fn search(keyword: &str, filepath: &str) -> Result<bool, Box<dyn std::error::Error>> {
    handle(keyword, filepath)
}