| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
The idea is to try to generate more of the boilerplate code, but for now
we only do the `z()` method definition. There are also some we're not
quite able to replace yet (like XChanRequest) since it also has life
times.
It's a start anyways :)
|
|
|
|
|
|
|
|
| |
This means adding the full tokio as a dependency. While there isn't much
gain to going async in the current cli demo app, a full fledged app may
have more to gain by it.
First foray into async rust, so I might not do it right...
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
This simplifies things a bit, as we don't need to buffer query params
and such outside of the request itself.
|
| |
|
| |
|
| |
|
|
|
|
| |
Also make constructor functions in the zotapi namespace.
|
| |
|
| |
|
| |
|
|
|