traxxx/src/scrapers/mofos.js

14 lines
279 B
JavaScript
Raw Normal View History

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