2021-11-09 01:31:27 +08:00
|
|
|
mod auth;
|
2021-02-19 02:50:52 +08:00
|
|
|
mod common;
|
2021-10-27 20:27:25 +08:00
|
|
|
mod dashboard;
|
2021-03-16 01:11:10 +08:00
|
|
|
mod documents;
|
2021-02-19 02:50:52 +08:00
|
|
|
mod index;
|
2021-02-19 05:10:50 +08:00
|
|
|
mod search;
|
|
|
|
mod settings;
|
2021-03-24 18:03:01 +08:00
|
|
|
mod snapshot;
|
2021-03-16 02:08:19 +08:00
|
|
|
mod stats;
|
2021-12-02 23:03:26 +08:00
|
|
|
mod tasks;
|
2021-02-19 03:44:33 +08: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.
|