1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern crate reqwest;
extern crate log;

extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;

// pub mod models;
mod internal;
mod api;
mod client;
mod automation_workflow_resource;

pub use crate::api::{MailchimpApi, RequestMethod};
pub use crate::internal::types::*;
pub use crate::client::MailchimpClient;
pub use crate::automation_workflow_resource::AutomationWorkflowResource;