Files
jiaqingjiayi-xiaochengxu/甲情_甲意/cloud/functions/helloworld/index.js
Ling53666 02554225da 提交
2025-08-18 09:11:51 +08:00

6 lines
112 B
JavaScript

exports.main = async (event, context) => {
let data = {
"message": "Hello World!"
};
return data;
};