mecha10-cli 0.1.47

Mecha10 CLI tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Stack component definitions
//!
//! Catalog of available stack (pre-configured component bundles) components.

use super::ComponentCatalog;

/// Add all stack components to the catalog
pub fn add_stacks(_catalog: &mut ComponentCatalog) {
    // TODO: Extract stack components from component_catalog.rs
    // This is a stub to make the code compile during refactoring
}