pub fn missing_rust_config(path: &str) -> String {
format!(
"Could not find Rust configuration file \"{path}\". Please, ensure that you are running this command inside a nestrs workspace."
)
}
pub fn wrong_plugin(name: &str) -> String {
format!("The \"{name}\" plugin is not a Rust-native nestrs compiler plugin.")
}
pub const CLI_ERRORS: &[(&str, &str)] = &[
("MISSING_RUST_CONFIG", "missing_rust_config"),
("WRONG_PLUGIN", "wrong_plugin"),
];