mangofetch-gui 0.7.3

Graphical interface for MangoFetch download manager (egui + eframe)
1
2
3
4
5
6
7
8
9
10
11
12
//! MangoFetch GUI — Interfaz gráfica con egui + eframe

pub mod bridge;
pub mod runtime;
pub mod theme;
pub mod widgets;
pub mod app;

pub use bridge::{CoreEvent, GuiCommand, MediaInfo, QueueItemInfo};
pub use runtime::AppRuntime;
pub use theme::BrandPreset;
pub use app::MangoFetchApp;