mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-01 02:38:49 +01:00
14 lines
375 B
Rust
14 lines
375 B
Rust
mod common;
|
|
mod documents;
|
|
mod index;
|
|
mod search;
|
|
mod settings;
|
|
mod updates;
|
|
mod stats;
|
|
|
|
// Tests are isolated by features in different modules to allow better readability, test
|
|
// targetability, and improved incremental compilation times.
|
|
//
|
|
// All the integration tests live in the same root module so only one test executable is generated,
|
|
// thus improving linking time.
|