
* 🧑💻 fix: add closing curly brace in the nix build step * ✨ feat: add code to provide search results from `mojeek` engine --------- Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
12 lines
520 B
Rust
12 lines
520 B
Rust
//! 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;
|
|
pub mod duckduckgo;
|
|
pub mod librex;
|
|
pub mod mojeek;
|
|
pub mod search_result_parser;
|
|
pub mod searx;
|
|
pub mod startpage;
|