14 releases
0.1.13 | Jun 22, 2021 |
---|---|
0.1.12 | Jun 21, 2021 |
#6 in #cio
152 downloads per month
36KB
755 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 QuickBooks API.
- For more information, you can check out their documentation at:
- https://developer.intuit.com/app/developer/qbo/docs/develop
- Example:
-
- use quickbooks::QuickBooks;
- use serde::{Deserialize, Serialize};
- async fn list_purchases() {
-
// Initialize the QuickBooks client.
-
let quickbooks = QuickBooks::new_from_env("", "", "");
-
let purchases = quickbooks.list_purchases().await.unwrap();
-
println!("{:?}", purchases);
- }
-
Dependencies
~6–18MB
~243K SLoC