1
2
3
4
5
6
7
8
9
10
11
12
use crate::response::Response;

pub trait IntoResponseWithPathedError {
    fn into_response_with_pathed_error(self) -> teo_result::Result<Response>;
}

impl IntoResponseWithPathedError for teo_result::Result<Response> {

    fn into_response_with_pathed_error(self) -> teo_result::Result<Response> {
        self
    }
}