aboutsummaryrefslogtreecommitdiffstats
path: root/examples/zotcli.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/zotcli.rs')
-rw-r--r--examples/zotcli.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/zotcli.rs b/examples/zotcli.rs
index 565d3ff..986dc85 100644
--- a/examples/zotcli.rs
+++ b/examples/zotcli.rs
@@ -64,6 +64,7 @@ fn main() {
(@subcommand post =>
(about: "Post a new message")
(@arg BODY: +required "Body of the message")
+ (@arg TITLE: --title +takes_value "Set a title for the message")
)
)
.get_matches();
@@ -101,8 +102,7 @@ fn main() {
zot::xchan::fetch(&client, raw, t, m.value_of("ID").unwrap());
},
("post", Some(m)) => {
- let body = m.value_of("BODY").unwrap();
- zot::item::post(&client, body);
+ zot::item::post(&client, m);
},
_ => {
println!("{}", matches.usage());