Skip to main content

vibe_kanban_cli/
lib.rs

1//! Vibe Kanban CLI - Interactive terminal interface for Vibe Kanban.
2//!
3//! This crate provides a terminal-based user interface for interacting with
4//! a Vibe Kanban server, allowing users to manage projects, tasks, workspaces,
5//! and git operations without needing the web UI.
6
7#![allow(clippy::module_inception)]
8
9pub mod api;
10pub mod app;
11pub mod types;
12
13pub use api::VibeKanbanClient;
14pub use app::App;