2021-11-08 18:31:27 +01:00
|
|
|
mod auth;
|
2021-02-18 19:50:52 +01:00
|
|
|
mod common;
|
2021-10-27 14:27:25 +02:00
|
|
|
mod dashboard;
|
2021-03-15 18:11:10 +01:00
|
|
|
mod documents;
|
2022-04-28 10:48:57 +02:00
|
|
|
mod dumps;
|
2023-07-06 09:01:28 +02:00
|
|
|
mod features;
|
2021-02-18 19:50:52 +01:00
|
|
|
mod index;
|
2021-02-18 22:10:50 +01:00
|
|
|
mod search;
|
|
|
|
mod settings;
|
2021-03-24 11:03:01 +01:00
|
|
|
mod snapshot;
|
2021-03-15 19:08:19 +01:00
|
|
|
mod stats;
|
2023-01-12 18:56:27 +01:00
|
|
|
mod swap_indexes;
|
2021-12-02 16:03:26 +01:00
|
|
|
mod tasks;
|
2021-02-18 20:44:33 +01:00
|
|
|
|
|
|
|
// 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.
|