formatting

This commit is contained in:
Chance 2025-03-29 20:20:40 -04:00 committed by BitSyndicate
parent 75a855bb9f
commit e106242d41
Signed by untrusted user: bitsyndicate
GPG key ID: 443E4198D6BBA6DE
15 changed files with 540 additions and 626 deletions

View file

@ -5,9 +5,7 @@ use tokio::runtime;
#[allow(unused_imports)]
use tracing::{debug, error, info, warn};
use tracing::{level_filters::LevelFilter, subscriber::set_global_default};
use tracing_subscriber::{layer::Filter, util::SubscriberInitExt};
use winit::event_loop::EventLoop;
pub mod bint;
pub mod core;
fn init_logger() {
@ -27,7 +25,6 @@ fn init_logger() {
#[tokio::main(flavor = "current_thread")]
async fn main() -> anyhow::Result<()> {
init_logger();
// bint::main();
if !cfg!(debug_assertions) {
info!("{}", "Debug mode disabled".bright_blue());
set_panic_hook();