vibe-kanban-cli 0.1.4

Interactive CLI for Vibe Kanban
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Vibe Kanban CLI - Interactive terminal interface for Vibe Kanban.
//!
//! This crate provides a terminal-based user interface for interacting with
//! a Vibe Kanban server, allowing users to manage projects, tasks, workspaces,
//! and git operations without needing the web UI.

#![allow(clippy::module_inception)]

pub mod api;
pub mod app;
pub mod types;

pub use api::VibeKanbanClient;
pub use app::App;