pub fn from_file(
tag: impl ToString,
scripts: impl IntoIterator<Item = impl AsRef<Path>>,
) -> Result<(), MetaCallLoaderError>
Expand description
Loads a script from file. Usage example: …
// A Nodejs script
metacall::load::from_file("node", ["index.js", "main.js"]).unwrap();