refactor: remove unused imports

This commit is contained in:
LinlyBoi
2025-07-10 11:24:52 +03:00
parent 691e2ad85f
commit 03f3dbbc29
2 changed files with 1 additions and 16 deletions

View File

@@ -1,20 +1,8 @@
use clap::{Arg, Command};
use oauth2::basic::BasicClient;
use oauth2::reqwest::async_http_client;
use oauth2::{
AuthUrl, AuthorizationCode, ClientId, ClientSecret, CsrfToken, PkceCodeChallenge, RedirectUrl,
Scope, TokenResponse, TokenUrl,
};
use reqwest::Client;
use serde_json::json;
use youtube::{create_default_metadata, load_oauth_config, load_video_metadata, YouTubeUploader};
use youtube_scheduler::*;
use std::path::Path;
use tokio;
use chrono::{DateTime, Duration, Utc};
use std::fs::{self, File};
use serde::{Deserialize, Serialize};
use std::io::{self};
use chrono::{DateTime, Utc};
mod youtube;

View File

@@ -1,4 +1,3 @@
use clap::{Arg, Command};
use oauth2::basic::BasicClient;
use oauth2::reqwest::async_http_client;
use oauth2::{
@@ -8,9 +7,7 @@ use oauth2::{
use rand::seq::SliceRandom;
use reqwest::Client;
use serde_json::json;
use youtube_scheduler::*;
use std::path::Path;
use tokio;
use chrono::{DateTime, Duration, Utc};
use std::fs::{self, File};
use serde::{Deserialize, Serialize};