Implement user saving

This commit is contained in:
Natsu Kagami 2020-01-13 15:35:50 -05:00
parent f7063a2992
commit 4020405801
3 changed files with 62 additions and 6 deletions

View file

@ -30,7 +30,7 @@ impl Client {
r: reqwest::RequestBuilder,
) -> Result<reqwest::Response, Error> {
let v = r.query(&[("k", &self.key)]).build()?;
// println!("{}", v.url());
dbg!(v.url());
Ok(c.execute(v)?)
}