2020-01-14 18:56:46 +00:00
|
|
|
'use strict';
|
|
|
|
|
2020-01-27 21:54:14 +00:00
|
|
|
const { fetchScene, fetchLatest, fetchProfile } = require('./mindgeek');
|
|
|
|
|
|
|
|
async function networkFetchProfile(actorName) {
|
|
|
|
return fetchProfile(actorName, 'fakehub', 'modelprofile');
|
|
|
|
}
|
2020-01-14 18:56:46 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
fetchLatest,
|
2020-01-27 21:54:14 +00:00
|
|
|
fetchProfile: networkFetchProfile,
|
2020-01-14 18:56:46 +00:00
|
|
|
fetchScene,
|
|
|
|
};
|