taskter 0.1.0

Taskter is a terminal Kanban board CLI tool built with Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Taskter library interface exposing the core modules so they can be
//! reused from integration tests and (potentially) other binaries.

pub mod agent;
pub mod store;
pub mod tools;
pub mod cli;

pub use cli::{Cli, Commands, ShowCommands};

// The TUI heavily depends on a terminal backend which is not easily testable in
// automated environments. We expose it behind the `tui` feature so that normal
// consumers – including the main binary – can still use it without imposing
// unnecessary dependencies on test builds.
#[cfg(feature = "tui")]
pub mod tui;