mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-12 16:01:48 -04:00
5 lines
74 B
JavaScript
5 lines
74 B
JavaScript
exports.name = function (req, res) {
|
|
res.json({
|
|
name: 'Bob'
|
|
});
|
|
}; |