0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-12-23 12:58:22 -05:00
websurfx/src/engines/mod.rs

12 lines
504 B
Rust
Raw Normal View History

//! This module provides different modules which handles the functionlity to fetch results from the
//! upstream search engines based on user requested queries. Also provides different models to
//! provide a standard functions to be implemented for all the upstream search engine handling
//! code. Moreover, it also provides a custom error for the upstream search engine handling code.
pub mod brave;
2023-04-22 07:35:07 -04:00
pub mod duckduckgo;
pub mod librex;
2023-09-24 07:54:08 -04:00
pub mod search_result_parser;
2023-04-22 07:35:07 -04:00
pub mod searx;
pub mod startpage;