Merge pull request #68 from hecrj/feature/application-settings

Allow `Application` configuration with `Settings`
This commit is contained in:
Héctor Ramón 2019-11-25 15:00:53 +01:00 committed by GitHub
commit 84874ac5dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 98 additions and 19 deletions

View file

@ -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;