oh-my-todo 0.2.0

Local-first terminal task manager with a mouse-first TUI and CLI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Application and library surface for `oh-my-todo`.
//!
//! The published crate provides the shared application core used by the `todo`
//! binary, including storage, domain modeling, CLI parsing, and Ratatui TUI
//! modules.

pub mod application;
pub mod cli;
pub mod domain;
pub mod storage;
pub mod tui;

pub use application::bootstrap::{AppContext, BootstrapOptions, bootstrap};