Some tests were pointing to examples directory which has been moved out. Also kept one node.js examples as it is widely used in Helm charts etc.
8 lines
119 B
JavaScript
8 lines
119 B
JavaScript
|
|
module.exports = async function(context) {
|
|
return {
|
|
status: 200,
|
|
body: "hello, world!\n"
|
|
};
|
|
}
|