karics 0.1.0-alpha3

A Rust library for reading files
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[macro_use]
extern crate log;

mod date;
mod http_server;
mod request;
mod response;

pub use http_server::{HttpServer, HttpService, HttpServiceFactory};
pub use request::{BodyReader, Request};
pub use response::Response;