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

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