mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-05-16 04:56:32 +00:00
7 lines
118 B
JavaScript
7 lines
118 B
JavaScript
module.exports = {
|
|
myfunction: function (event, context) {
|
|
console.log(event);
|
|
return "Hello world!";
|
|
}
|
|
}
|