diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/zot/item.rs | 8 |
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); |