forked from DebaucheryLibrarian/traxxx
14 lines
289 B
JavaScript
14 lines
289 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const { fetchScene, fetchLatest, fetchProfile } = require('./mindgeek');
|
||
|
|
||
|
async function networkFetchProfile(actorName) {
|
||
|
return fetchProfile(actorName, 'devianthardcore');
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
fetchLatest,
|
||
|
fetchProfile: networkFetchProfile,
|
||
|
fetchScene,
|
||
|
};
|