removed loop in main I forgot about

This commit is contained in:
Zastian Pretorius
2022-06-10 21:45:50 +01:00
parent 72cfafccb2
commit beef0ed273

View File

@@ -7,10 +7,6 @@ use isahc::prelude::*;
use std::process::{Command, ExitStatus}; use std::process::{Command, ExitStatus};
use std::io::Result; use std::io::Result;
fn main() { fn main() {
let mut exit_status = 0;
while exit_status == 0 {
}
let ln_url = search_ln(); let ln_url = search_ln();
let chapter_url = chapter_selector(&ln_url); let chapter_url = chapter_selector(&ln_url);
let full_text = get_full_text(&chapter_url); let full_text = get_full_text(&chapter_url);