2020-01-16 20:56:33 +00:00
|
|
|
'use strict';
|
|
|
|
|
2020-01-27 21:54:14 +00:00
|
|
|
const { fetchScene, fetchLatest, fetchProfile } = require('./mindgeek');
|
|
|
|
|
2020-07-20 23:44:51 +00:00
|
|
|
async function networkFetchProfile({ name: actorName }) {
|
|
|
|
return fetchProfile({ name: actorName }, 'milehighmedia');
|
2020-01-27 21:54:14 +00:00
|
|
|
}
|
2020-01-16 20:56:33 +00:00
|
|
|
|
|
|
|
module.exports = {
|
2020-05-14 02:26:05 +00:00
|
|
|
fetchLatest,
|
|
|
|
fetchProfile: networkFetchProfile,
|
|
|
|
fetchScene,
|
2020-01-16 20:56:33 +00:00
|
|
|
};
|