diff options
| author | Jonas Maier <> | 2026-03-07 10:07:42 +0100 |
|---|---|---|
| committer | Jonas Maier <> | 2026-03-07 10:07:42 +0100 |
| commit | 6c37d7bcbbd09f7c6478384fc77f780a650ca15c (patch) | |
| tree | ae5cd12178f0a49b28251d070048f06d4f4f8c04 /src/main.rs | |
| parent | 4b34aecec66c9123399f14a8f75ee8d0aff47a44 (diff) | |
| download | pish-6c37d7bcbbd09f7c6478384fc77f780a650ca15c.tar.gz | |
make modules public again to suppress all the unused warnings
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/main.rs b/src/main.rs index 70e31bd..9fc903f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,16 +9,16 @@ use std::sync::{Arc, Mutex}; use std::thread::sleep; use std::time::Duration; -mod basedir; -mod completion; -mod cursor; -mod history; -mod linebuf; -mod panic; -mod parse; -mod raw; -mod reload; -mod run; +pub mod basedir; +pub mod completion; +pub mod cursor; +pub mod history; +pub mod linebuf; +pub mod panic; +pub mod parse; +pub mod raw; +pub mod reload; +pub mod run; use linebuf::LineBuf; use raw::*; |
