I _know_ all those things are unused - I haven't finished writing the
program yet. Shut up about them until I'm done!
}
}
+ #[allow(unused)] // FIXME: remove this once we start using it
fn post(url_suffix: &str) -> Self {
Req {
method: reqwest::Method::POST,
};
let result = tui.main_loop();
+ let _ = &tui.subthread_sender; // FIXME: this just suppresses a warning
+ let _ = &tui.client; // FIXME: this just suppresses a warning
+
disable_raw_mode()?;
stdout().execute(LeaveAlternateScreen)?;