We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08b22bb commit 9043399Copy full SHA for 9043399
1 file changed
assets/apps_script/Code.gs
@@ -239,6 +239,15 @@ function _respHeaders(resp) {
239
return resp.getHeaders();
240
}
241
242
+function doGet(e) {
243
+ return HtmlService.createHtmlOutput(
244
+ "<!DOCTYPE html><html><head><title>My App</title></head>" +
245
+ '<body style="font-family:sans-serif;max-width:600px;margin:40px auto">' +
246
+ "<h1>Welcome</h1><p>This application is running normally.</p>" +
247
+ "</body></html>"
248
+ );
249
+}
250
+
251
function _json(obj) {
252
return ContentService.createTextOutput(JSON.stringify(obj)).setMimeType(
253
ContentService.MimeType.JSON
0 commit comments