This commit is contained in:
2024-12-07 17:44:06 -05:00
commit 1acfbf3b2e
7 changed files with 830 additions and 0 deletions

13
src/main.rs Normal file
View File

@ -0,0 +1,13 @@
use liblambdashell::shell;
mod cli;
fn main() {
if let Some(args) = cli::parser() {
let shell_config = shell::Config {
norc: args.norc,
};
let mut shell_instance = shell::LambdaShell::create(shell_config);
shell_instance.start();
};
}