allframe_forge/
lib.rs

1//! AllFrame Forge - Project scaffolding library
2//!
3//! This library provides utilities for creating new AllFrame projects.
4//! It is used by the `allframe` CLI binary.
5
6#![deny(missing_docs)]
7
8pub mod scaffolding;
9pub mod templates;
10pub mod validation;