pillow-http 0.4.1

http in pillow
Documentation
1
2
3
4
5
use crate::{request::Request, response::Response};

pub trait Handler {
    fn handle(_request: Request, response: Response) -> String;
}