14 releases
0.3.1 |
|
---|---|
0.1.17 | Jun 17, 2021 |
0.1.13 | May 10, 2021 |
#2111 in Web programming
147 downloads per month
45KB
776 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 DocuSign API.
- For more information, you can check out their documentation at:
- https://developers.docusign.com/docs/esign-rest-api/reference/
- Example:
-
- use docusign::DocuSign;
- use serde::{Deserialize, Serialize};
- async fn get_envelope() {
-
// Initialize the DocuSign client.
-
let docusign = DocuSign::new_from_env("", "", "", "");
-
let envelope = docusign.get_envelope("some-envelope-id").await.unwrap();
-
println!("{:?}", envelope);
- }
-
Dependencies
~6–18MB
~247K SLoC