no async
This commit is contained in:
parent
018859d979
commit
80c6feac42
@ -1,13 +1,11 @@
|
|||||||
use liblambdashell::shell;
|
|
||||||
|
|
||||||
mod cli;
|
mod cli;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
if let Some(args) = cli::parser() {
|
if let Some(args) = cli::parser() {
|
||||||
let shell_config = shell::Config {
|
let shell_config = liblambdashell::session::Config {
|
||||||
norc: args.norc,
|
norc: args.norc,
|
||||||
};
|
};
|
||||||
let mut shell_instance = shell::LambdaShell::create(shell_config);
|
let mut shell_instance = liblambdashell::session::LambdaShell::create(shell_config);
|
||||||
shell_instance.start();
|
shell_instance.start();
|
||||||
};
|
};
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user