feat: foundational domain types #1

Merged
phundrak merged 8 commits from feature/001-mvp-interactive-commit into develop 2026-02-06 03:27:28 +01:00
5 changed files with 4 additions and 14 deletions
Showing only changes of commit c7239cb1b0 - Show all commits

0
src/cli/mod.rs Normal file
View File

0
src/commit/mod.rs Normal file
View File

0
src/jj/mod.rs Normal file
View File

View File

@@ -1,14 +1,4 @@
pub fn add(left: u64, right: u64) -> u64 { mod cli;
left + right mod commit;
} mod jj;
mod prompts;
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}

0
src/prompts/mod.rs Normal file
View File