diff options
| author | Jonas Maier <> | 2026-03-06 16:01:15 +0100 |
|---|---|---|
| committer | Jonas Maier <> | 2026-03-06 16:01:15 +0100 |
| commit | 40387917c8ba4703aee111e1cf37dcd793e39ba2 (patch) | |
| tree | 5759ff0c2d0011c4b94bd7979734ce106b6217b0 /src/main.rs | |
| parent | f6736ab046e8e5f6eef9211bf9f72a3faa8c597c (diff) | |
| download | pish-40387917c8ba4703aee111e1cf37dcd793e39ba2.tar.gz | |
partial shell string parser
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 16 |
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; |
