contentfree 0.1.2

contentful client for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# rand_simple

[![Crate](https://img.shields.io/crates/v/contentfree.svg)](https://crates.io/crates/contentfree)

このライブラリは[Contentful](https://www.contentful.com/)を rust で便利に使うために作られたものです。

# 使用例

## get_content

```
		let client = ContentfulClient::new("your-space".to_string(), "your-content-type".to_string());
		let response = client.get_content().await?;
		let json_response: ContentfulResponse<YourResponseJson> = response.json().await?;
```