diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-23 18:26:17 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-24 15:21:32 -0700 |
commit | b335a14b08860499129e513ce274b640e5fbb11e (patch) | |
tree | 03e114bd0cc45c05d25b0537b7534e6d018349f6 /rust/fatcat-api/examples/client.rs | |
parent | ab86c1994999dc61e154b0336986eef47c19fb6d (diff) | |
download | fatcat-b335a14b08860499129e513ce274b640e5fbb11e.tar.gz fatcat-b335a14b08860499129e513ce274b640e5fbb11e.zip |
editgroup -> editgroup_id param (re-codegen)
Diffstat (limited to 'rust/fatcat-api/examples/client.rs')
-rw-r--r-- | rust/fatcat-api/examples/client.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/fatcat-api/examples/client.rs b/rust/fatcat-api/examples/client.rs index b2edead6..a818a5c7 100644 --- a/rust/fatcat-api/examples/client.rs +++ b/rust/fatcat-api/examples/client.rs @@ -41,7 +41,7 @@ fn main() { .index(1), ) .arg(Arg::with_name("https").long("https").help("Whether to use HTTPS or not")) - .arg(Arg::with_name("host").long("host").takes_value(true).default_value("api.fatcat.wiki").help("Hostname to contact")) + .arg(Arg::with_name("host").long("host").takes_value(true).default_value("localhost").help("Hostname to contact")) .arg(Arg::with_name("port").long("port").takes_value(true).default_value("8080").help("Port to contact")) .get_matches(); |