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