noem 0.1.0

Resend mail fetched by different strategies to different places
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod chain;
pub mod unified;
pub mod unimail;

pub trait Adapter {
    type Input;
    type Output;
    type Error;
    fn convert(&self, input: Self::Input) -> Result<Self::Output, Self::Error>;
}