summaryrefslogtreecommitdiff
path: root/iced_builder/src/lib.rs
blob: 847e01e30ae45670c926a2a57edb008c3356752e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
pub mod config;
pub mod dialogs;
pub mod environment;
pub mod error;
pub mod icon;
pub mod panes;
pub mod theme;
pub mod types;
pub mod widget;

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