Update jive

This commit is contained in:
Aode (lion) 2022-03-05 16:58:21 -06:00
parent 381211a51e
commit 941ed8eb42

View file

@ -1,4 +1,4 @@
fn main() -> Result<(), Box<dyn std::error::Error>> {
fn main() {
jive::block_on(async move {
let (tx, mut rx) = mpsc::channel();
@ -19,7 +19,5 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
while let Some(val) = rx.recv().await {
println!("Got {}", val);
}
})?;
Ok(())
})
}