More progress and some debug logs to remove

This commit is contained in:
Conrad Irwin 2023-10-06 16:48:29 -06:00
parent 63a230f92e
commit f6bc229d1d
5 changed files with 46 additions and 6 deletions

View file

@ -66,6 +66,15 @@ use crate::open_url::{OpenListener, OpenRequest};
mod open_url;
fn main() {
writeln!(
OpenOptions::new()
.write(true)
.append(true)
.open("/Users/conrad/dbg")
.unwrap(),
"HELLO"
)
.unwrap();
let http = http::client();
init_paths();
init_logger();
@ -270,6 +279,7 @@ fn main() {
}
OpenRequest::JoinChannel { channel_id } => cx
.update(|cx| {
dbg!("joining channel");
workspace::join_channel(channel_id, app_state.clone(), None, cx)
})
.detach(),