flows_connector_dsi/
lib.rs

1/// # Flows Connector DSI
2/// 
3/// This is a library that wraps the inbound/outbound of 
4/// [flows.network](https://flows.network)'s flow function into 
5/// a Rust data structure.
6/// 
7/// You can find the example code for this library 
8/// [here](https://github.com/second-state/flow-functions).
9
10pub mod github;
11pub mod gmail;
12pub mod monday;
13pub mod notion;
14pub mod sendgrid;
15pub mod twilio;
16pub mod jira;
17pub mod discord;
18pub mod telegram;
19
20pub use serde;
21pub use serde_json;
22
23mod tests;