Import Executor directly from crate

This commit is contained in:
Héctor Ramón Jiménez 2024-09-18 21:19:18 +02:00
parent f9ee3229c1
commit d20ce8d82c
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -30,11 +30,11 @@
//! ]
//! }
//! ```
use iced_futures::Executor;
use crate::program::{self, Program};
use crate::window;
use crate::{Element, Font, Result, Settings, Size, Subscription, Task};
use crate::{
Element, Executor, Font, Result, Settings, Size, Subscription, Task,
};
use std::borrow::Cow;