Spaces:
Running
Running
File size: 569 Bytes
049b1c1 50aa52c 27bc52c ca6b271 15fc415 c02006c 9f23a1c 75a77d2 15fc415 e1e426c ca6b271 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
//! 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 bing;
pub mod brave;
pub mod common;
pub mod duckduckgo;
pub mod librex;
pub mod mojeek;
pub mod search_result_parser;
pub mod searx;
pub mod startpage;
pub mod wikipedia;
|