ZLUA REPL!!!!! (#18)

This commit is contained in:
Chance 2024-12-21 16:28:32 -05:00 committed by BitSyndicate
parent f286a2b624
commit 3766da6bcf
Signed by untrusted user: bitsyndicate
GPG key ID: 443E4198D6BBA6DE
6 changed files with 106 additions and 13 deletions

View file

@ -5,8 +5,8 @@ use core::{
splash, workspace,
};
use anyhow::Ok;
use colored::Colorize;
use mlua::Lua;
use tokio::runtime;
pub mod core;
@ -26,9 +26,8 @@ fn main() -> anyhow::Result<()> {
COMMAND_MANAGER.read().execute("help", None)?;
let t = tokio::spawn(core::repl::input::handle_repl());
t.await??;
Ok(())
Ok::<(), anyhow::Error>(())
})?;
Ok(())
}