updated by GasGit automation

This commit is contained in:
Bruce McPherson 2016-06-24 18:11:03 +01:00
parent ad4175064f
commit 76e21c5ac3

View file

@ -0,0 +1,9 @@
function showMyScriptAppResource(s) {
try {
return ScriptApp.getResource(s);
}
catch (err) {
throw err + " getting script " + s;
}
}