summaryrefslogtreecommitdiffstats
path: root/native/src/window.rs
diff options
context:
space:
mode:
Diffstat (limited to 'native/src/window.rs')
-rw-r--r--native/src/window.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/window.rs b/native/src/window.rs
index db9226dc..4dcae62f 100644
--- a/native/src/window.rs
+++ b/native/src/window.rs
@@ -1,6 +1,6 @@
//! Build window-based GUI applications.
+mod backend;
mod event;
-mod renderer;
+pub use backend::Backend;
pub use event::Event;
-pub use renderer::{Renderer, Target};