load arbitrary model data

This commit is contained in:
Chance 2025-03-29 01:31:16 -04:00 committed by BitSyndicate
parent 42f9148f9f
commit eebf9feb2f
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 443E4198D6BBA6DE
11 changed files with 959 additions and 314 deletions

View file

@ -7,6 +7,7 @@ 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() {
@ -26,6 +27,7 @@ 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();