Added Twistys.

This commit is contained in:
2020-02-07 04:44:01 +01:00
parent 59a26ea00b
commit 6b56bad21e
24 changed files with 209 additions and 0 deletions

View File

@@ -37,6 +37,7 @@ const mofos = require('./mofos');
const naughtyamerica = require('./naughtyamerica');
const score = require('./score');
const twentyonesextury = require('./21sextury');
const twistys = require('./twistys');
const xempire = require('./xempire');
const wicked = require('./wicked');
@@ -83,6 +84,7 @@ module.exports = {
realitykings,
score,
teamskeet,
twistys,
vixen,
vogov,
wicked,
@@ -116,6 +118,7 @@ module.exports = {
realitykings,
score,
transangels,
twistys,
wicked,
xempire,
},

13
src/scrapers/twistys.js Normal file
View File

@@ -0,0 +1,13 @@
'use strict';
const { fetchScene, fetchLatest, fetchProfile } = require('./mindgeek');
async function networkFetchProfile(actorName) {
return fetchProfile(actorName, 'twistys');
}
module.exports = {
fetchLatest,
fetchProfile: networkFetchProfile,
fetchScene,
};