cacao/examples/todos_list/main.rs
2022-07-15 16:14:02 +02:00

19 lines
408 B
Rust

//! This example implements a "kitchen sink" Todo app, because I suppose that's what all GUI
//! frameworks aspire to do these days. Go figure.
//!
//! This may get extracted into a different repo some day in the future.
use cacao::appkit::App;
mod add;
mod app;
mod menu;
mod preferences;
mod storage;
mod todos;
mod windows;
fn main() {
App::new("com.cacao.todo", app::TodosApp::default()).run();
}