//! The `framewatch gui`: a window picker, live preview, and ROI editor built
//! with `eframe`/`egui`. Enabled by the `gui` feature.
modapp;usecrate::config::Config;usecrate::error::Error;/// Launch the GUI, optionally seeded with a base [`Config`].
pubfnrun(initial:Option<Config>)->Result<(), Error>{app::run(initial)}