pub trait ReverserProxyInterface: Send + Sync {
type ReverseResponseFut: Future<Output = Result<String, Error>> + Send;
// Required method
fn reverse(&self, input: &str) -> Self::ReverseResponseFut;
}
pub trait ReverserProxyInterface: Send + Sync {
type ReverseResponseFut: Future<Output = Result<String, Error>> + Send;
// Required method
fn reverse(&self, input: &str) -> Self::ReverseResponseFut;
}