aboutsummaryrefslogtreecommitdiffstats
path: root/examples/zot/item.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/zot/item.rs')
-rw-r--r--examples/zot/item.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/zot/item.rs b/examples/zot/item.rs
index 9869492..648a9f0 100644
--- a/examples/zot/item.rs
+++ b/examples/zot/item.rs
@@ -43,8 +43,12 @@ pub fn post(client: &zotapi::Client, args: &ArgMatches) {
}
match msg.create(&client) {
- Ok(payload) => {
- println!("Raw payload: {}", payload);
+ Ok(res) => {
+ if res.success {
+ println!("New item with id {} posted successfully!", res.item_id);
+ } else {
+ println!("The item could not be posted.");
+ }
}
Err(e) => {
println!("Error posting message: {:?}", e);