cleanup: move local imports below mod *

This commit is contained in:
Ashley Wulber 2024-02-28 15:30:06 -05:00
parent 9341cc08e8
commit 0043c35b92
No known key found for this signature in database
GPG key ID: 5216D4F46A90A820

View file

@ -8,7 +8,6 @@ use std::ffi::c_void;
use std::io::Result;
use std::sync::mpsc::{self, Receiver};
use mime::{AllowedMimeTypes, AsMimeTypes, MimeType};
use sctk::reexports::calloop::channel::{self, Sender};
use sctk::reexports::client::backend::Backend;
use sctk::reexports::client::Connection;
@ -20,6 +19,8 @@ mod state;
mod text;
mod worker;
use mime::{AllowedMimeTypes, AsMimeTypes, MimeType};
/// Access to a Wayland clipboard.
pub struct Clipboard {
request_sender: Sender<worker::Command>,