Files
client-sdk-rust/examples/simple_room/src/main.rs
T
Théo Monnom c1cba8dcbd wip
I still need to solve type checking cycle to be able to compile
2022-12-22 00:44:40 +01:00

16 lines
244 B
Rust

mod app;
mod events;
mod video_grid;
mod video_renderer;
fn main() {
tracing_subscriber::fmt::init();
let rt = tokio::runtime::Builder::new_multi_thread()
.enable_all()
.build()
.unwrap();
app::run(rt);
}