Remove unneeded imports

This commit is contained in:
Love 2023-03-05 12:14:34 +01:00
parent be3839ae67
commit fd41100b95
3 changed files with 4 additions and 6 deletions

View File

@ -11,9 +11,8 @@ use serde::{Deserialize, Serialize};
use serde_json;
use crate::{
download_with_progress, get_mut_ref, m3u8::DataEntry, Readline, APP_IDENTIFIER,
JSON_CONFIG_FILENAME, STANDARD_OFFLINE_FILENAME, STANDARD_PLAYLIST_FILENAME,
STANDARD_SEEN_LINKS_FILENAME,
get_mut_ref, m3u8::DataEntry, Readline, APP_IDENTIFIER, JSON_CONFIG_FILENAME,
STANDARD_OFFLINE_FILENAME, STANDARD_PLAYLIST_FILENAME, STANDARD_SEEN_LINKS_FILENAME,
};
#[derive(Serialize, Deserialize, Debug)]

View File

@ -4,8 +4,7 @@ use std::rc::Rc;
use colored::Colorize;
use ilovetv::{
download_with_progress, get_mut_ref, Configuration, DataEntry, GrandMother, M3u8, Parser,
Readline,
download_with_progress, get_mut_ref, Configuration, DataEntry, GrandMother, M3u8, Readline,
};
#[tokio::main]

View File

@ -5,7 +5,7 @@ use std::{
rc::Rc,
};
use crate::{download_with_progress, downloader::DualWriter, Configuration, Parser, MAX_TRIES};
use crate::{download_with_progress, downloader::DualWriter, MAX_TRIES};
pub struct Playlist {
pub content: String,