diff options
Diffstat (limited to 'examples/zot/item.rs')
-rw-r--r-- | examples/zot/item.rs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/examples/zot/item.rs b/examples/zot/item.rs index ede1876..5c3bd40 100644 --- a/examples/zot/item.rs +++ b/examples/zot/item.rs @@ -15,10 +15,17 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +use clap::ArgMatches; use zotapi; -pub fn post(client: &zotapi::Client, body: &str) { - match client.item().body(&body).create() { +pub fn post(client: &zotapi::Client, args: &ArgMatches) { + let mut msg = client.item(); + msg.body(args.value_of("BODY").unwrap()); + if let Some(title) = args.value_of("TITLE") { + msg.title(title); + } + + match msg.create() { Ok(payload) => { println!("Raw payload: {}", payload); }, |