mangofetch-gui 0.1.0

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 app;
pub mod bridge;
pub mod runtime;
pub mod theme;
pub mod widgets;

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