Replace CLI executor with jj-lib integration, implement full interactive commit workflow via prompts, and add mock infrastructure for testing. Add CLI integration tests and error handling tests.
8 lines
155 B
Rust
8 lines
155 B
Rust
#[cfg(any(test, feature = "test-utils"))]
|
|
pub mod mock;
|
|
pub mod prompter;
|
|
pub mod workflow;
|
|
|
|
pub use prompter::Prompter;
|
|
pub use workflow::CommitWorkflow;
|