ggen-domain 3.2.0

Domain logic layer for ggen - pure business logic without CLI dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Project domain layer - pure business logic
//!
//! This module contains all project-related domain logic.

pub mod apply;
pub mod gen;
pub mod new;
pub mod plan;

// Re-export for convenience
pub mod build;
pub mod init;