From beef0ed273a4ae07a096db9357247f2504ec2bf3 Mon Sep 17 00:00:00 2001 From: Zastian Pretorius Date: Fri, 10 Jun 2022 21:45:50 +0100 Subject: [PATCH] removed loop in main I forgot about --- src/main.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index 2046569..9cef7cf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,10 +7,6 @@ use isahc::prelude::*; use std::process::{Command, ExitStatus}; use std::io::Result; fn main() { - let mut exit_status = 0; - while exit_status == 0 { - - } let ln_url = search_ln(); let chapter_url = chapter_selector(&ln_url); let full_text = get_full_text(&chapter_url);