traxxx/src/scrapers/milehighmedia.js

14 lines
287 B
JavaScript
Raw Normal View History

2020-01-16 20:56:33 +00:00
'use strict';
const { fetchScene, fetchLatest, fetchProfile } = require('./mindgeek');
async function networkFetchProfile(actorName) {
return fetchProfile(actorName, 'milehighmedia');
}
2020-01-16 20:56:33 +00:00
module.exports = {
fetchLatest,
fetchProfile: networkFetchProfile,
2020-01-16 20:56:33 +00:00
fetchScene,
};