1//! A simple command-line task manager application.
2//!
3//! This library provides the core logic and data structures for managing tasks,
4//! including adding, listing, completing, and removing tasks, with data persistence
5//! to a TOML file.
67pub mod app;
89pub use app::*;