From 73b4eeff8c6b76e5f1cb6e34c69781710629a7a4 Mon Sep 17 00:00:00 2001 From: loveb Date: Thu, 19 Jan 2023 01:22:58 +0100 Subject: [PATCH] remove testing --- src/main.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/main.rs b/src/main.rs index 5f14717..672f747 100644 --- a/src/main.rs +++ b/src/main.rs @@ -132,16 +132,6 @@ async fn download_m3u8(files_to_download: Rc>) { } } -#[tokio::test] -async fn t() { - let link = "http://clientsportals.com:2095/series/fW6Mue7z/aTGX3xaM/21179.mkv"; - let dot = link.rfind(".").unwrap(); - let last = &link[dot..link.len()]; - - println!("{}", last); - println!("{}", last.len()); -} - fn stream(m3u8item: &M3u8) { // Well I know that this is frowned upon, but it's honestly the most efficient way of doing this let ptr = m3u8item as *const M3u8;