Skip to main content

oh_my_todo/
lib.rs

1//! Application and library surface for `oh-my-todo`.
2//!
3//! The published crate provides the shared application core used by the `todo`
4//! binary, including storage, domain modeling, CLI parsing, and Ratatui TUI
5//! modules.
6
7pub mod application;
8pub mod cli;
9pub mod domain;
10pub mod storage;
11pub mod tui;
12
13pub use application::bootstrap::{AppContext, BootstrapOptions, bootstrap};