spacex / src /models /mod.rs
neon_arch
⚙️ refactor: reorganize code & restructure codebase for better maintainability (#207)
493c56b
raw
history blame
No virus
339 Bytes
//! 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;