Add missing re-export

`WindowError` is used in the public `fj_window::Error` type.
This commit is contained in:
Hanno Braun 2023-06-19 13:36:12 +02:00
parent 0366ac1bb9
commit 9057567673

View File

@ -13,4 +13,7 @@
mod display;
mod window;
pub use self::display::{display, Error};
pub use self::{
display::{display, Error},
window::WindowError,
};