runandlog 0.3.1

CLI / TUI that runs the shell commands in a Markdown file and writes the results back
1
2
3
4
5
6
7
8
9
//! The Run and Log CLI / TUI itself.
//!
//! The implementation lives in the library so that both the binary and the
//! integration tests can use it.

#[cfg(feature = "gui")]
pub mod gui;
pub mod session;
pub mod tui;