server/lib.rs
1#![feature(coverage_attribute)]
2#![forbid(unsafe_code)]
3#![deny(missing_docs)]
4#![deny(clippy::all)]
5#![doc = include_str!("../README.md")]
6
7mod convertors;
8mod database;
9mod display;
10mod name_builder;
11mod projections;
12mod server_state;
13mod services;
14
15#[cfg(test)]
16pub(crate) mod macros;
17
18/// Domain logic types and helpers.
19pub mod domain;
20
21/// Error types for server operations.
22pub mod error;
23
24pub use server_state::{ServerState, initialize_server_state};
25pub use services::*;