Added conditional compilation for os type

This commit is contained in:
2023-04-07 20:36:55 -07:00
parent f8e2c32f9a
commit e0f36ce112
7 changed files with 192 additions and 149 deletions

3
src/entry/unix/mod.rs Normal file
View File

@ -0,0 +1,3 @@
mod unix;
pub(in crate::entry::unix) mod promptbuffer;
pub use crate::entry::unix::unix::main;