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