airtable-flows 0.1.7

Airtable integration for flows.network
Documentation
This is a library for integrating Airtable in your flow function for [test.flows.network](https://test.flows.network).

## Usage example
```rust
use airtable_flows::create_record;
use slack_flows::{listen_to_channel};

#[no_mangle]
pub fn run() {
    listen_to_channel("myworkspace", "mychannel", |sm| {
        let record = serde_json::json!({
            "Name": sm.text,
        });
        create_record("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`](https://docs.rs/airtable-flows/latest/airtable_flows/fn.create_record.html).

The whole document is [here](https://docs.rs/airtable-flows).