Added MindGeek profile scraper for all MG sites.

This commit is contained in:
2020-01-27 22:54:14 +01:00
parent 24fe61e064
commit 6d4fd5fd77
11 changed files with 124 additions and 23 deletions

View File

@@ -1,8 +1,13 @@
'use strict';
const { fetchScene, fetchLatest } = require('./mindgeek');
const { fetchScene, fetchLatest, fetchProfile } = require('./mindgeek');
async function networkFetchProfile(actorName) {
return fetchProfile(actorName, 'mofos');
}
module.exports = {
fetchLatest,
fetchScene,
fetchProfile: networkFetchProfile,
};