server/mod.rs
1//! # use server::{ [request], [thread], [process] }
2//!
3//! Library crate for the rust-web-server
4
5pub mod request;
6pub mod thread;
7pub mod process;
8
9pub use request::RequestObject as r_RequestObject;
10pub use request::handle_connection as r_handle_connection;
11pub use thread::ThreadPool as t_ThreadPool;
12pub use thread::Worker as t_Worker;
13pub use process::CliArgs as p_CliArgs;