- Add README with project overview, architecture, and roadmap - Set up Rust project with clap, toml, serde, tracing dependencies - Scaffold CLI with 6 commands (init, validate, diff, check, apply, rollback) - Create module structure for config, state, planner, executor, jail, vm, zfs - Create test directory structure for unit/integration/idempotency tests
9 lines
123 B
Rust
9 lines
123 B
Rust
pub mod config;
|
|
pub mod state;
|
|
pub mod planner;
|
|
pub mod executor;
|
|
pub mod jail;
|
|
pub mod vm;
|
|
pub mod zfs;
|
|
pub mod commands;
|