forked from DebaucheryLibrarian/traxxx
Added Twistys.
This commit is contained in:
@@ -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
13
src/scrapers/twistys.js
Normal 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,
|
||||
};
|
||||
Reference in New Issue
Block a user