From d70021fa68b556e20638f29e2e303f6d156afdb6 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 25 Nov 2019 14:17:13 +0100 Subject: Allow `Application` configuration with `Settings` --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 1d79269b..cb491821 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -185,6 +185,9 @@ mod application; mod platform; mod sandbox; +pub mod settings; + pub use application::Application; pub use platform::*; pub use sandbox::Sandbox; +pub use settings::Settings; -- cgit