brush_shell/
lib.rs

1//! Create for brush, an executable bash-compatible shell.
2
3#![allow(dead_code)]
4
5pub mod args;
6pub mod events;
7
8mod productinfo;