-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,8 @@ use std::path::PathBuf; | |
use std::str::FromStr; | ||
|
||
use base64::prelude::*; | ||
use lofty::{ | ||
file::TaggedFileExt as _, | ||
picture::{MimeType, PictureType}, | ||
}; | ||
use lofty::picture::{MimeType, PictureType}; | ||
use lofty::prelude::*; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
martpie
Author
Owner
|
||
use tauri::plugin::{Builder, TauriPlugin}; | ||
use tauri::Runtime; | ||
|
||
|
I prefer to keep the local namespace clean by not importing unused names/types. When using traits an unnamed import often suffices.