aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/main.rs b/src/main.rs
index a001ad4..2f93899 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,22 +1,19 @@
-extern crate rss;
+extern crate clap;
extern crate regex;
extern crate reqwest;
+extern crate rss;
extern crate serde;
-extern crate serde_json;
#[macro_use]
extern crate serde_derive;
-extern crate clap;
-use std::fs::File;
-use std::io::BufReader;
-use rss::Channel;
+extern crate serde_json;
mod actions;
mod structs;
mod utils;
use actions::*;
-use structs::*;
use clap::{Arg, App, SubCommand};
+use structs::*;
fn main() {
let mut state = State::new();