Handle browse message

This commit is contained in:
John Doty 2022-12-17 08:29:09 -08:00
parent c9197a02ff
commit 9cf0089e48

View file

@ -197,6 +197,10 @@ async fn client_handle_messages<T: AsyncRead + Unpin>(
// TODO: Log
}
}
Browse(url) => {
// TODO: Uh, security?
_ = open::that(url);
}
message => error!("Unsupported: {:?}", message),
};
}