frentui 0.1.0

Interactive TUI for batch file renaming using freneng
Documentation
//! Workflow step handlers

pub mod common;
pub mod definition;
pub mod handler;
pub mod step_start;
pub mod step_directory;
pub mod step_files;
pub mod review_files;
pub mod step_renaming;
pub mod review_preview;
pub mod apply_options;
pub mod confirm;
pub mod results;

pub use common::{handle_step_input, render_step};
pub use definition::{MenuAction, MenuDefinition, MenuOption, PreviewContent, PreviewDefinition, StepDefinition};
pub use handler::{get_step_definition, handle_step_input_by_definition, render_step_by_definition};