rss-tool/src/main.rs
Gabriel e94905c9e6 very minor improvements. I know the AI generated icon is cringe, but it's a placeholder for now. (Doesn't even work on Wayland anyways)
Successfully migrated to iced::application for more fine-grained control over settings.
Added "all-items" view that breaks things slightly.
2025-12-04 15:20:12 -05:00

16 lines
203 B
Rust

#[allow(unused)]
pub mod net;
pub mod ui;
pub mod db;
pub mod files;
pub mod widgets;
pub fn main() -> iced::Result {
db::initialize();
ui::user_interface()
}
#[cfg(test)]
mod tests;