pse/src/main.rs
2024-12-07 17:44:06 -05:00

13 lines
249 B
Rust

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();
};
}