fix: imports
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-05-31 20:13:28 +01:00
parent 0f893a004c
commit be62b3a867
2 changed files with 635 additions and 357 deletions

986
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -6,15 +6,13 @@ use nostr_sdk::prelude::DataVendingMachineStatus;
use nostr_sdk::{serde_json, Client, EventBuilder, Kind, Tag}; use nostr_sdk::{serde_json, Client, EventBuilder, Kind, Tag};
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use std::env::temp_dir; use std::env::temp_dir;
use std::fmt::format;
use std::fs::create_dir_all; use std::fs::create_dir_all;
use std::future::Future; use std::future::Future;
use std::path::{Path, PathBuf}; use std::path::Path;
use std::pin::Pin; use std::pin::Pin;
use std::time::Duration; use std::time::Duration;
use yt_dlp::executor::Executor;
use yt_dlp::fetcher::deps::Libraries; use yt_dlp::fetcher::deps::Libraries;
use yt_dlp::utils::executor::Executor;
use yt_dlp::Youtube;
/// Basic DVM which clones videos from TikTok and posts them as kind 22 shorts /// Basic DVM which clones videos from TikTok and posts them as kind 22 shorts
pub struct TikTokDvm { pub struct TikTokDvm {