fix: make error enum public

This commit is contained in:
Jonas Kruckenberg 2023-12-14 11:23:59 +01:00
parent 5d259531c3
commit fe330206aa
No known key found for this signature in database
GPG key ID: 55B37D49677B1FAC
2 changed files with 6 additions and 6 deletions

View file

@ -148,7 +148,7 @@ pub mod updater;
#[cfg(feature = "window")]
pub mod window;
pub(crate) use error::Error;
pub use error::Error;
pub(crate) type Result<T> = core::result::Result<T, Error>;
#[cfg(any(feature = "dialog", feature = "window"))]