mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-23 06:28:23 -05:00
9 lines
339 B
Rust
9 lines
339 B
Rust
|
//! This module provides modules which in turn provides various models for aggregrating search
|
||
|
//! results, parsing config file, providing trait to standardize search engine handling code,
|
||
|
//! custom engine error for the search engine, etc.
|
||
|
|
||
|
pub mod aggregation_models;
|
||
|
pub mod engine_models;
|
||
|
pub mod parser_models;
|
||
|
pub mod server_models;
|