podcasts/hammond-gtk/src/widgets/mod.rs
Jordan Petridis d7aec6fdfb
h-gtk: Move vies inside the widgets module.
EpisodeView was renamed to HomeView. More renaming will follow.
2018-04-23 15:57:46 +03:00

14 lines
302 B
Rust

mod empty;
mod episode;
mod episode_states;
mod home;
mod show;
mod shows;
pub use self::empty::EmptyView;
pub use self::episode::EpisodeWidget;
pub use self::home::HomeView;
pub use self::show::ShowWidget;
pub use self::show::{mark_all_notif, remove_show_notif};
pub use self::shows::ShowsPopulated;