aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJonas Maier <>2026-03-05 08:55:21 +0100
committerJonas Maier <>2026-03-05 08:55:21 +0100
commit5e9a2aa9440c1a10b1740b77eb64a3936245c8f2 (patch)
tree1dbb1f45ef247be76ee091b76716f7c91e53f61e /src
parentba0b70df55a9439d5bd364df2ff17cd7875227c8 (diff)
downloadpish-5e9a2aa9440c1a10b1740b77eb64a3936245c8f2.tar.gz
make modules pub such that there are no complaints about unused things
Diffstat (limited to 'src')
-rw-r--r--src/main.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main.rs b/src/main.rs
index edf5cb0..5854272 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -5,11 +5,11 @@ use std::os::unix::io::AsRawFd;
use std::path::Path;
use std::process::Command;
-mod cursor;
-mod linebuf;
-mod parse;
-mod raw;
-mod panic;
+pub mod cursor;
+pub mod linebuf;
+pub mod parse;
+pub mod raw;
+pub mod panic;
use linebuf::LineBuf;
use raw::*;