Initialize project and implement decentralized voice chat client (PipeWire, Opus, Iroh, Iced)

This commit is contained in:
2026-05-27 05:18:56 -04:00
commit 1220d94e91
15 changed files with 9177 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
pub mod audio;
pub mod codec;
pub mod network;
pub mod core;
pub mod app;
#[tokio::main]
async fn main() {
if let Err(e) = app::run_gui() {
eprintln!("Error running GUI: {:?}", e);
}
}