Skip to main content

task_manager_command_line/
lib.rs

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.
6
7pub mod app;
8
9pub use app::*;