pub fn commands_files() -> Vec<EmbeddedFile>Expand description
Lists embedded shared command files.
Returns a vector of EmbeddedFile entries for every file embedded under the commands asset directory,
each with a relative_path (path relative to the commands root) and contents.
ยงExamples
use ito_templates::commands_files;
let files = commands_files();
// every entry has a non-empty relative path and contents
assert!(files.iter().all(|f| !f.relative_path.is_empty() && !f.contents.is_empty()));