genfile 0.6.0

CLI for genfile_core template archive management - create, manage, and materialize code generation templates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Command handlers for genfile CLI
//!
//! This module contains the execution logic for all commands.
//! Each handler receives a `VerifiedCommand` and `ExecutionContext`,
//! executes the operation using `genfile_core`, and returns `OutputData` or `ErrorData`.

mod shared_state;

pub mod archive;
pub mod file;
pub mod parameter;
pub mod value;
pub mod content;
pub mod materialize;
pub mod pack;
pub mod analysis;