11 lines
290 B
JavaScript
11 lines
290 B
JavaScript
const customers = require('../data/customers.json');
|
|
|
|
module.exports = async function (context, req) {
|
|
context.res = {
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
},
|
|
// status: 200, /* Defaults to 200 */
|
|
body: customers
|
|
};
|
|
} |