From deeb4bc86f98fbed5a029c79b93739de652b5d84 Mon Sep 17 00:00:00 2001 From: jasmine Date: Tue, 10 Jun 2025 11:27:26 +0800 Subject: [PATCH] refactor --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 6b139e0..5dcd0fe 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,8 +1,8 @@ mod core; -use crate::core::*; +use core::*; mod inbuilt; -use crate::inbuilt::*; +use inbuilt::*; use mlua::prelude::*; @@ -57,7 +57,7 @@ fn main() { args.extend(get_args(&alias_tokens)); } - // Execute inbuilt command if match found, otherwise execute external command with + // Execute inbuilt command if match found, otherwise execute external command with // arguments. match cmd.as_str() { "cd" => cd(&args),