sark 0.1.0

Simple Asynchronous Rust webKit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(async_fn_in_trait)]

pub mod app;
pub mod http;
pub mod error;
pub mod server;
pub mod service;

pub mod prelude {
    pub use crate::app::App;
    pub use crate::service::{Service, Router};
    pub use crate::http::{Request, Response};
    pub use crate::error::{Error, Result};
    pub use crate::server::Server;
    pub use http::{Method, StatusCode};
}