Tw 1297499d7a
add command g to switch shell quickly (#4014)
Signed-off-by: Tw <tw19881113@gmail.com>
2021-09-17 10:39:14 +01:00

14 lines
196 B
Rust

mod command;
mod enter;
mod exit;
mod goto;
mod next;
mod prev;
pub use command::Shells;
pub use enter::Enter;
pub use exit::Exit;
pub use goto::Goto;
pub use next::Next;
pub use prev::Previous;