From 4b55fd0b7dbcb19ed9546a8bba4cbec5ba79daf9 Mon Sep 17 00:00:00 2001 From: drendog Date: Wed, 21 Aug 2024 01:49:49 +0200 Subject: [PATCH] feat: add re-exports --- src/reexports.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/reexports.rs diff --git a/src/reexports.rs b/src/reexports.rs new file mode 100644 index 0000000..fec9e1c --- /dev/null +++ b/src/reexports.rs @@ -0,0 +1,12 @@ +pub use slint; +pub use slint_interpreter; + +pub mod sctk { + pub use smithay_client_toolkit::reexports::*; +} + +pub mod wayland_client { + pub use wayland_client::*; +} + +pub use anyhow;