ggen-cli-lib 26.5.19

CLI interface for ggen
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Common imports and re-exports for CLI commands

// Core CLI types and error handling
pub use crate::error::{GgenError, GgenResultExt, Result};
pub use crate::runtime_helper;

// clap-noun-verb types (use carefully - convert to GgenError)
pub use clap::Args;
pub use clap_noun_verb::Result as ClapNounVerbResult;
pub use clap_noun_verb_macros::verb;

// Standard library types
pub use std::fs;
pub use std::io::{self, Read, Write};
pub use std::path::PathBuf;