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:
15
crates/infrastructure/src/store/mod.rs
Normal file
15
crates/infrastructure/src/store/mod.rs
Normal file
@ -0,0 +1,15 @@
|
||||
//! Filesystem-backed persistence stores (ARCHITECTURE §5, §9.2).
|
||||
//!
|
||||
//! L2 ships [`FsProjectStore`], implementing the domain [`ProjectStore`] port:
|
||||
//! the known-projects **registry** and the **workspace** are stored as plain
|
||||
//! JSON files in the app data directory (machine-local, outside any project).
|
||||
|
||||
mod context;
|
||||
mod profile;
|
||||
mod project;
|
||||
mod template;
|
||||
|
||||
pub use context::IdeaiContextStore;
|
||||
pub use profile::FsProfileStore;
|
||||
pub use project::FsProjectStore;
|
||||
pub use template::FsTemplateStore;
|
||||
Reference in New Issue
Block a user