summaryrefslogtreecommitdiff
path: root/iced_builder/src/lib.rs
blob: d04c594ec5d4658ba2b4d0565c527b1f870765bb (plain)
1
2
3
4
5
6
7
8
pub mod dialogs;
pub mod error;
pub mod icon;
pub mod panes;
pub mod types;

pub use error::Error;
pub type Result<T> = core::result::Result<T, Error>;