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
13
14
15
//! Utility functions domain layer
//!
//! Pure business logic for utility operations including system diagnostics and environment management.

pub mod doctor;
pub mod env;

pub use doctor::{
    execute_doctor, CheckResult, CheckStatus, DoctorInput, DoctorResult, EnvironmentInfo,
};
pub use env::{
    execute_env_clear_cache, execute_env_ensure_dirs, execute_env_get, execute_env_list,
    execute_env_set, execute_env_show_dirs, DefaultEnvironmentManager, EnvironmentManager,
    GgenEnvironment,
};