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

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,
};