Is there a way to move some functions into separate files in google app script? currently my Code.gs looks like the following:
function onSubmit(e) {}
function readSpreadsheet(sheet) {}
function writeSpreadsheet(sheet, data) {}
function sendEmail() {}
function helperLogic1() {}
function helperLogic2() {}
function helperLogic3() {}
function helperLogic4() {}
So to make my code looks nicer ;p .. I want to move functions related to spreadsheet to spreadsheet.gs email to email.gs etc. So after moving them, how do I load it from the code.gs?
Thanks