Skip to main content

btdt_server_lib/
lib.rs

1//! Library module for btdt-server
2//!
3//! This library module exists for two reasons:
4//!
5//! 1. To share code between the `btdt-server` binary crate and benchmarks.
6//! 2. To share code with the integration tests of the `btdt-server` and `btdt-cli`.
7
8pub mod asyncio;
9#[cfg(feature = "test")]
10pub mod test_server;