bmo 0.5.0

Local-first SQLite-backed CLI issue tracker for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Domain model types: [`Issue`], [`Status`], [`Priority`], [`Kind`], and related types.

pub mod activity;
pub mod comment;
pub mod conflict;
pub mod export;
pub mod file;
pub mod issue;
pub mod label;
pub mod relation;

pub use activity::{ActivityEntry, ActivityEntryIden};
pub use comment::{Comment, CommentIden};
pub use conflict::{ConflictingIssue, FileConflict};
pub use file::{IssueFile, IssueFileIden};
pub use issue::{Issue, IssueFilter, IssueIden, Kind, Priority, Status};
pub use label::{Label, LabelIden};
pub use relation::{Relation, RelationIden, RelationKind};