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

6 lines
112 B
JavaScript
Raw Normal View History

2024-11-10 07:01:22 +00:00
exports.main = async (event, context) => {
let data = {
"message": "Hello World!"
};
return data;
};