itack 0.1.2

Git-backed issue tracker for multi-agent coordination
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core types and functionality.

pub mod config;
pub mod git;
pub mod issue;
pub mod project;
pub mod status;

pub use config::Config;
pub use git::{
    commit_to_branch, find_issue_in_branch, read_file_from_branch, remove_file_from_branch,
};
pub use issue::Issue;
pub use project::Project;
pub use status::Status;