news 0.1.3

Consume the news in yout terminal 📰
1
2
3
4
5
6
7
8
9
10
11
mod fetch;
mod news;
mod tui;

use tui::App;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let mut app = App::new();
    app.start()?;
    Ok(())
}