cargo_adk/lib.rs
1//! # cargo-adk library
2//!
3//! Core types and modules for the composable template scaffolding engine.
4//! This library provides the Template Registry, Capability Addons, Enterprise Patterns,
5//! Composition Pipeline, and Interactive Wizard for `cargo adk new`.
6
7pub mod addon;
8pub mod cli;
9pub mod codegen;
10pub mod composition;
11pub mod interactive;
12pub mod pattern;
13pub mod provider;
14pub mod registry;
15pub mod template;