shipflow 0.1.0

A minimalist, git-aware CLI for tracking what you ship
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! shipflow — local-first task tracking for developers who ship.

pub mod cli;
pub mod commands;
pub mod error;
pub mod git;
pub mod report;
pub mod storage;
pub mod task;
pub mod utils;

pub use error::{Result, ShipflowError};