Demo script updates. Record-replay, a bugfix in the canary demo script, etc.
8 lines
119 B
JavaScript
8 lines
119 B
JavaScript
|
|
module.exports = async function(context) {
|
|
return {
|
|
status: 200,
|
|
body: "Hello, world!\n"
|
|
};
|
|
}
|