contentfree 0.1.3

contentful client for rust
Documentation

contentfree

Crate

このライブラリはContentfulを 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?;