rustigo 1.1.4

A Rust webserver inspired by the Go standard library's HTTPServer
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// This module contains the prelude for the library.

pub use crate::pattern::Pattern;
pub use crate::request::Request;
pub use crate::Rustigo;

pub use crate::html;
pub use crate::text;

pub use std::net::TcpStream;
pub use std::sync::Arc;