15 releases
0.3.1 |
|
---|---|
0.1.15 | Aug 25, 2021 |
0.1.13 | Jul 7, 2021 |
0.1.11 | Jun 21, 2021 |
#143 in Email
30KB
586 lines
cio
Helper functions and types for doing the activities of a CIO.
Configuration
Runtime Flags
Specific runtime behaviors can be controlled via environment variables. Flags are disabled by default and setting the variable to true
will enable the feature.
Flag | Description |
---|---|
RFD_PDFS_IN_GITHUB | Enables committing of rendered RFD PDFs back to their source repo |
RFD_PDFS_IN_GOOGLE_DRIVE | Enables writing of rendered RFD PDFs to Google Drive |
The architecture for this application server and all it's surroundings is:
lib.rs
:
- A rust library for interacting with the MailChimp API.
- For more information, the MailChimp API is documented at docs.mailchimp.com.
- Example:
-
- use mailchimp_api::MailChimp;
- use serde::{Deserialize, Serialize};
- async fn get_subscribers() {
-
// Initialize the MailChimp client.
-
let mailchimp = MailChimp::new_from_env("", "", "");
-
// Get the subscribers for a mailing list.
-
let subscribers = mailchimp.get_subscribers("some_id").await.unwrap();
-
println!("{:?}", subscribers);
- }
-
Dependencies
~6–17MB
~239K SLoC