forked from DebaucheryLibrarian/traxxx
11 lines
253 B
JavaScript
11 lines
253 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const { fetchApiLatest, fetchApiUpcoming, fetchScene, fetchApiProfile } = require('./gamma');
|
||
|
|
||
|
module.exports = {
|
||
|
fetchLatest: fetchApiLatest,
|
||
|
fetchProfile: fetchApiProfile,
|
||
|
fetchScene,
|
||
|
fetchUpcoming: fetchApiUpcoming,
|
||
|
};
|