dx_forge/api/
mod.rs

1//! # DX Forge Public API - The 132 Eternal Functions
2//!
3//! This module contains the complete, final, immutable public API for Forge v0.1.0.
4//! All 132 functions are implemented here and organized by category.
5
6// Core API modules
7pub mod lifecycle;
8pub mod version;
9pub mod pipeline;
10pub mod reactivity;
11pub mod branching;
12pub mod events;
13pub mod config;
14pub mod cicd;
15pub mod dx_directory;
16pub mod offline;
17pub mod cart;
18pub mod packages;
19pub mod codegen;
20pub mod dx_experience;
21
22// Re-export all public API functions
23pub use lifecycle::*;
24pub use version::*;
25pub use pipeline::*;
26pub use reactivity::*;
27pub use branching::*;
28pub use events::*;
29pub use config::*;
30pub use cicd::*;
31pub use dx_directory::*;
32pub use offline::*;
33pub use cart::*;
34pub use packages::*;
35pub use codegen::*;
36pub use dx_experience::*;