feat: add main features
Agents for developpement added + frontend add + backend added. Git viewer created + agent and template creator + layout and project creator
This commit is contained in:
12
crates/application/src/git/mod.rs
Normal file
12
crates/application/src/git/mod.rs
Normal file
@ -0,0 +1,12 @@
|
||||
//! Git use cases (ARCHITECTURE §6, L8). Local Git operations orchestrated over
|
||||
//! the [`domain::ports::GitPort`]: status, staging, commit, branches, checkout
|
||||
//! and log. State-changing operations announce [`domain::DomainEvent::GitStateChanged`].
|
||||
|
||||
mod usecases;
|
||||
|
||||
pub use usecases::{
|
||||
GitBranches, GitBranchesInput, GitBranchesOutput, GitCheckout, GitCheckoutInput, GitCommit,
|
||||
GitCommitInput, GitCommitOutput, GitGraph, GitGraphInput, GitGraphOutput, GitInit, GitInitInput,
|
||||
GitLog, GitLogInput, GitLogOutput, GitStage, GitStagePathInput, GitStatus, GitStatusInput,
|
||||
GitStatusOutput, GitUnstage,
|
||||
};
|
||||
Reference in New Issue
Block a user