MovieMapper/ui/src/main.rs
jarianc 00d8e072c5 feat: Add Rust UI and backend implementation with project infrastructure
Adds the new Rust-based UI (iced), backend service, shared Swift models,
CI/CD workflows, build scripts, and project documentation.
2026-08-19 21:22:08 -05:00

14 lines
185 B
Rust

mod app;
mod backend;
mod components;
mod messages;
mod state;
mod utils;
mod windows;
use app::App;
use iced::Application;
fn main() -> iced::Result {
App::run(App::settings())
}