diff options
author | 2020-10-17 21:10:59 +0200 | |
---|---|---|
committer | 2020-10-17 21:10:59 +0200 | |
commit | befeb3222501c03d412bf8e3f0041afa0d135081 (patch) | |
tree | 03f39ceb0bec80f0a7ed9be058761776ba03d6d1 /src/executor.rs | |
parent | 5d0f7ba3fcaa96dc0509c8e9edc587411c21f3db (diff) | |
parent | ae5a2502d676f6065315b19132430243575e934b (diff) | |
download | iced-befeb3222501c03d412bf8e3f0041afa0d135081.tar.gz iced-befeb3222501c03d412bf8e3f0041afa0d135081.tar.bz2 iced-befeb3222501c03d412bf8e3f0041afa0d135081.zip |
Merge pull request #569 from hecrj/improvement/hide-null-executor
Remove `executor::Null` from the root public API
Diffstat (limited to 'src/executor.rs')
-rw-r--r-- | src/executor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/executor.rs b/src/executor.rs index 59d59a5a..ea6ab14a 100644 --- a/src/executor.rs +++ b/src/executor.rs @@ -1,5 +1,5 @@ //! Choose your preferred executor to power your application. -pub use crate::runtime::{executor::Null, Executor}; +pub use crate::runtime::Executor; pub use platform::Default; |