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

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