f 0.1.2

A lightweight dual-pane file manager with GUI built using iced, inspired by Total Commander.
mod app;
mod i18n;
mod messages;
mod model;
mod ops;
mod types;
mod ui;

use anyhow::Result as AnyResult;
use iced::Size;

use crate::app::FileCommander;

fn main() -> AnyResult<()> {
    iced::application(
        FileCommander::boot,
        FileCommander::update,
        FileCommander::view,
    )
    .subscription(FileCommander::subscription)
    .title(|state: &FileCommander| state.window_title())
    .window_size(Size::new(1280.0, 720.0))
    .antialiasing(true)
    .centered()
    .run()?;
    Ok(())
}