Files
jiaqingjiayi-xiaochengxu/甲情_甲意/cloud/functions/helloworld/index.js

6 lines
112 B
JavaScript
Raw Normal View History

2025-08-18 09:11:51 +08:00
exports.main = async (event, context) => {
let data = {
"message": "Hello World!"
};
return data;
};