flyer 3.0.0

HTTP framework for rust
Documentation
1
2
3
4
5
6
7
8
// use async_trait::async_trait;
// use crate::{request::Request, response::Response};

// #[async_trait]
// pub trait Hook: Send + Sync {
//     async fn before(&mut self, req: Request, res: Response) -> (Request, Response);
//     async fn after(&mut self, req: Request, res: Response) -> (Request, Response);
// }