Hammond-gtk: Change the privacy of the views module.
This commit is contained in:
parent
bdda596806
commit
0cdd48ac1e
@ -4,8 +4,7 @@ use gtk::prelude::*;
|
||||
|
||||
use failure::Error;
|
||||
|
||||
use views::empty::EmptyView;
|
||||
use views::episodes::EpisodesView;
|
||||
use views::{EmptyView, EpisodesView};
|
||||
|
||||
use app::Action;
|
||||
|
||||
|
||||
@ -7,8 +7,7 @@ use failure::Error;
|
||||
use hammond_data::Podcast;
|
||||
use hammond_data::dbqueries;
|
||||
|
||||
use views::empty::EmptyView;
|
||||
use views::shows::ShowsPopulated;
|
||||
use views::{EmptyView, ShowsPopulated};
|
||||
|
||||
use app::Action;
|
||||
use widgets::show::ShowWidget;
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
pub mod shows;
|
||||
pub mod episodes;
|
||||
pub mod empty;
|
||||
mod shows;
|
||||
mod episodes;
|
||||
mod empty;
|
||||
|
||||
pub use self::empty::EmptyView;
|
||||
pub use self::episodes::EpisodesView;
|
||||
pub use self::shows::ShowsPopulated;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user