diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2020-02-13 14:45:41 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2020-02-13 14:45:41 +0100 |
commit | d99083c47ddd31288ed1b688002388f6e68c5e04 (patch) | |
tree | 08e90a0da26512fe19470c8bd7ff0d81d3dffd4c /examples | |
parent | da461fc867b7c9211116fe7d0c23afbb96f6aaa4 (diff) | |
download | rust-zotapi-d99083c47ddd31288ed1b688002388f6e68c5e04.tar.gz rust-zotapi-d99083c47ddd31288ed1b688002388f6e68c5e04.tar.bz2 rust-zotapi-d99083c47ddd31288ed1b688002388f6e68c5e04.zip |
Refactor how ABConfigs are fetched.
Introduce a `z()` menber function that creates the request object
that we use for further configuring the requset. This eliminates the
need to two fetch functions, and is meant to provide a consistent
way of doing these requests.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/zot/abconfig.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/zot/abconfig.rs b/examples/zot/abconfig.rs index a6454ac..2e357e4 100644 --- a/examples/zot/abconfig.rs +++ b/examples/zot/abconfig.rs @@ -18,7 +18,7 @@ use zotapi; pub fn fetch(client: &zotapi::Client) { - match zotapi::abconfig::fetch(&client) { + match zotapi::ABConfig::z().fetch(&client) { Ok(v) => { println!("Id: Chan: Cat: Key: Val: xchan:"); for entry in v { |