pub fn schema_files() -> Vec<EmbeddedFile>Expand description
Lists embedded workflow schema files.
Each entry contains the file’s path relative to the schema root and its raw contents.
§Examples
use ito_templates::schema_files;
let files = schema_files();
assert!(files.iter().all(|f| !f.relative_path.is_empty() && !f.contents.is_empty()));