2021-02-08 18:37:25 +11:00
|
|
|
//! 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.
|
|
|
|
|
2021-08-08 15:31:48 +10:00
|
|
|
use cacao::appkit::App;
|
2021-02-08 18:37:25 +11:00
|
|
|
|
|
|
|
mod add;
|
|
|
|
mod app;
|
|
|
|
mod menu;
|
|
|
|
mod preferences;
|
|
|
|
mod storage;
|
|
|
|
mod todos;
|
|
|
|
mod windows;
|
|
|
|
|
|
|
|
fn main() {
|
2022-07-16 00:14:02 +10:00
|
|
|
App::new("com.cacao.todo", app::TodosApp::default()).run();
|
2021-02-08 18:37:25 +11:00
|
|
|
}
|