jiaqingjiayi-xiaochengxu/甲情_甲意/cloud/functions/helloworld/index.js
2024-11-10 15:01:22 +08:00

6 lines
112 B
JavaScript

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