blitzkrieg/
lib.rs

1//! # Blitzkrieg
2//!
3//! An HTTP Web Server written from scratch in Rust.
4//!
5//! This is written for educational purposes and is not meant to be used in production.
6#![doc(html_logo_url = "https://cdn-icons-png.flaticon.com/512/3857/3857541.png")]
7/// A module for parsing HTTP.
8pub mod http;
9/// A module for implementing a Server struct.
10pub mod server;
11/// A module for implementing a threadpool for the server.
12pub mod threadpool;
13
14mod test;