examples/hello-node: move handler to code/, split http.tf and job.tf
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
// handler.js — пример serverless функции на Node.js 20
|
||||
// Возвращает приветствие с именем из event или "World" по умолчанию
|
||||
exports.handle = async (event) => {
|
||||
const name = event.name || 'World';
|
||||
return { message: `Hello, ${name}! (nodejs20) епта !` };
|
||||
};
|
||||
Reference in New Issue
Block a user