aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorJonas Maier <>2026-03-06 16:01:15 +0100
committerJonas Maier <>2026-03-06 16:01:15 +0100
commit40387917c8ba4703aee111e1cf37dcd793e39ba2 (patch)
tree5759ff0c2d0011c4b94bd7979734ce106b6217b0 /src/main.rs
parentf6736ab046e8e5f6eef9211bf9f72a3faa8c597c (diff)
downloadpish-40387917c8ba4703aee111e1cf37dcd793e39ba2.tar.gz
partial shell string parser
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/main.rs b/src/main.rs
index 52fc234..8a6e84e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -8,14 +8,14 @@ use std::process::{Command, Stdio};
use std::thread::sleep;
use std::time::Duration;
-pub mod completion;
-pub mod cursor;
-pub mod linebuf;
-pub mod panic;
-pub mod parse;
-pub mod raw;
-pub mod reload;
-pub mod run;
+mod completion;
+mod cursor;
+mod linebuf;
+mod panic;
+mod parse;
+mod raw;
+mod reload;
+mod run;
mod basedir;
mod history;