atomic_server_lib/
lib.rs

1/*!
2Atomic-Server is mostly desgigned to run as a binary, but it can be embedded in other projects, too.
3It is currently used as an embedded server in the Tauri distribution of Atomic Server.
4See https://github.com/atomicdata-dev/atomic-server/tree/master/src-tauri
5*/
6mod actor_messages;
7mod appstate;
8mod commit_monitor;
9pub mod config;
10mod content_types;
11mod errors;
12mod handlers;
13mod helpers;
14#[cfg(feature = "https")]
15mod https;
16mod jsonerrors;
17mod routes;
18pub mod serve;
19// #[cfg(feature = "search")]
20mod search;
21#[cfg(test)]
22mod tests;
23mod trace;