I still need to solve type checking cycle to be able to compile
This commit is contained in:
Théo Monnom
2022-12-22 00:44:40 +01:00
parent 2a83ec8376
commit c1cba8dcbd
9 changed files with 201 additions and 103 deletions
+1 -6
View File
@@ -1,15 +1,10 @@
use tracing_subscriber::prelude::*;
mod app;
mod events;
mod video_grid;
mod video_renderer;
fn main() {
let fmt_layer = tracing_subscriber::fmt::Layer::default();
tracing_subscriber::registry()
.with(fmt_layer)
.init();
tracing_subscriber::fmt::init();
let rt = tokio::runtime::Builder::new_multi_thread()
.enable_all()