rss-tool/src/main.rs

31 lines
463 B
Rust
Raw Normal View History

2024-09-03 22:53:57 -04:00
mod net;
use db::initialize;
use iced::{application, widget::{self, button, column, markdown, row, text}, Settings, Theme};
2024-09-03 22:53:57 -04:00
use net::load_rss;
use rss::Channel;
mod ui;
mod html;
mod db;
mod files;
2024-09-03 22:53:57 -04:00
//build CLI first, then create GUI
/*
TO DO:
1) Create basic CLI interactions
2) Create comprehensive Schema
3) Add/remove subscriptions
4)
*/
2024-09-03 22:53:57 -04:00
pub fn main() {
db::initialize();
db::add_feed("https://gabe.rocks/rss");
2024-09-03 22:53:57 -04:00
}
2024-09-03 22:53:57 -04:00