15次发布
0.12.13 | 2023年10月11日 |
---|---|
0.12.12 | 2023年10月1日 |
0.12.11 | 2023年9月27日 |
0.12.9 | 2023年8月22日 |
0.0.1 | 2023年7月10日 |
#247 在 HTTP客户端
每月113次下载
31KB
811 行
meztide
lotide的Rust SDK
查看文档
根据您的选择,双重许可,受MIT或Apache-2.0协议保护。
lib.rs
:
lotide的Rust SDK
用法
use meztide::prelude::*;
#[tokio::main]
async fn main() {
let client = Client::new("https://c.tide.tk/api/unstable");
let communities = client.communities(&Default::default()).await.unwrap();
let posts = client.posts(&Default::default()).await.unwrap();
let community_id = CommunityId(1);
// Get community data
let community = community_id.to_community(&client).await.unwrap();
// Get community moderators
let moderators = community_id.moderators(&client).await.unwrap();
// Follow the community
let _ = community_id.follow(&client, false).await.unwrap();
// Delete the community
let _ = community_id.delete(&client).await.unwrap();
}
查看Client
或 [ids
] 了解您能做的事情。
查看api_models
了解您能看到的更多内容。
依赖项
~5–19MB
~263K SLoC