Move browser code to core crate

This commit is contained in:
John Doty 2022-12-17 08:48:57 -08:00
parent 9cf0089e48
commit d6c9ae8d71
5 changed files with 32 additions and 15 deletions

View file

@ -1,6 +1,8 @@
mod browse;
mod client;
mod message;
mod server;
pub use browse::browse_url;
pub use client::run_client;
pub use server::run_server;