Successfully migrated to iced::application for more fine-grained control over settings. Added "all-items" view that breaks things slightly.
16 lines
203 B
Rust
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;
|
|
|