levi-core 0.1.3

Entities, status resolution, and ranking for levi, the git-aware issue tracker
Documentation
1
2
3
4
5
6
7
8
9
10
use myko::prelude::*;

/// Commit-graph slice: sha -> parent shas. id = commit sha (hex) — content
/// addressed and immutable (a sha's parents never change), so publication is
/// idempotent. Lets git-free nodes (the hub) resolve ancestry.
#[myko_item]
pub struct CommitFact {
    pub project_id: String,
    pub parents: Vec<String>,
}