mirror of
https://codeberg.org/demostf/api-client.git
synced 2026-06-03 08:34:15 +02:00
23 lines
No EOL
504 B
Markdown
23 lines
No EOL
504 B
Markdown
# api-client
|
|
|
|

|
|
|
|
Rust api client for demos.tf
|
|
|
|
## Example
|
|
|
|
```rust
|
|
use demostf_client::{ListOrder, ListParams, ApiClient};
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<(), demostf_client::Error> {
|
|
let client = ApiClient::new();
|
|
|
|
let demos = client.list(ListParams::default().with_order(ListOrder::Ascending), 1).await?;
|
|
|
|
for demo in demos {
|
|
println!("{}: {}", demo.id, demo.name);
|
|
}
|
|
Ok(())
|
|
}
|
|
``` |