memstead_git_branch/entity/mod.rs
1//! Re-export shim over `memstead_base::entity` plus the git-touching
2//! `git_tree_source` submodule that stays in this crate.
3//!
4//! Downstream consumers (memstead-mcp, memstead-cli, memstead-swift) reach the
5//! entity surface through `memstead_git_branch::entity::*` exactly as before;
6//! the inner types come from `memstead-base`.
7
8pub use memstead_base::entity::*;
9
10pub mod git_tree_source;