mirror of
https://github.com/dathere/ckanaction.git
synced 2026-02-04 10:05:33 +00:00
feat: add example of using status_show method
This commit is contained in:
parent
6df4f863f1
commit
723130792c
5 changed files with 1775 additions and 0 deletions
14
examples/status-show/src/main.rs
Normal file
14
examples/status-show/src/main.rs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#[tokio::main]
|
||||
async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
|
||||
// Initialize and build CKAN struct
|
||||
let ckan = ckanaction::CKAN::builder()
|
||||
.url("http://localhost:5000")
|
||||
.build();
|
||||
|
||||
// Send request to /status_show and print formatted debug output
|
||||
let status_show = ckan.status_show().await?;
|
||||
println!("{status_show:#?}");
|
||||
|
||||
Ok(())
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue