tinyhttp-internal 0.6.0

Internal data types for tinyhttp
Documentation
1
2
3
4
5
6
7
use super::response::Response;

#[derive(Debug, Clone)]
pub enum MiddlewareResponse {
    Next,
    Redirect(Response),
}