traxxx/src/scrapers/traxxx.js

17 lines
212 B
JavaScript
Raw Normal View History

'use strict';
async function fetchLatest() {
2020-10-26 00:42:38 +00:00
console.log('latest!');
return [
{
title: 'Hot chick arse fucked',
date: new Date(),
2020-10-26 00:42:38 +00:00
entryId: 'traxxx1',
},
];
}
module.exports = {
fetchLatest,
};