diff options
| author | Jonas Maier <> | 2026-03-05 08:55:21 +0100 |
|---|---|---|
| committer | Jonas Maier <> | 2026-03-05 08:55:21 +0100 |
| commit | 5e9a2aa9440c1a10b1740b77eb64a3936245c8f2 (patch) | |
| tree | 1dbb1f45ef247be76ee091b76716f7c91e53f61e /src | |
| parent | ba0b70df55a9439d5bd364df2ff17cd7875227c8 (diff) | |
| download | pish-5e9a2aa9440c1a10b1740b77eb64a3936245c8f2.tar.gz | |
make modules pub such that there are no complaints about unused things
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 10 |
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::*; |
