Move LK structure into own file.

This commit is contained in:
Kiyomichi Kosaka
2022-12-03 11:43:48 +00:00
parent 0818d93f9a
commit 50a3398ad9
4 changed files with 42 additions and 38 deletions
+2 -1
View File
@@ -2,7 +2,8 @@ use rustyline::Editor;
use std::{cell::RefCell, rc::Rc};
use home::home_dir;
use crate::structs::{LKErr, Command, LK};
use crate::lk::LK;
use crate::structs::{LKErr, Command};
use crate::parser::command_parser;
#[derive(Debug)]