9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
const momentpackage = require("moment");
|
|
|
|
module.exports = async function (context) {
|
|
return {
|
|
status: 200,
|
|
body: "Hello " + momentpackage().format(),
|
|
};
|
|
};
|