I am trying to design an app where I would like to call different function on different button. however, I am not sure how to write the google script part. i have 3 functions in my google script but everytime only one functions works. i am unable to direct from the app to a particular function.
` const doGet = () => {code
}
const clear = (e) => {code
}
const doPost = (e) => {code
}`
alternatively, if i can call a macro from the app, it would serve my purpose too, but i dont know how to do that...
thanks