This is a library for integrating Airtable in your flow function for flows.network.

Usage example

```rust use airtableflows::createrecord; use slackflows::{listento_channel};

[no_mangle]

pub fn run() { listentochannel("myworkspace", "mychannel", |sm| { let record = serdejson::json!({ "Name": sm.text, }); createrecord("accountName", "mybaseId", "mytable", record); }); } ```

When a new message is received from mychannel, we will create a new record in the table mytable of base mybaseId using create_record.

The whole document is here.