2020-02-09 01:01:39 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const { fetchApiLatest, fetchApiUpcoming, fetchScene, fetchApiProfile } = require('./gamma');
|
|
|
|
|
|
|
|
module.exports = {
|
2020-05-14 02:26:05 +00:00
|
|
|
fetchLatest: fetchApiLatest,
|
|
|
|
fetchProfile: fetchApiProfile,
|
|
|
|
fetchUpcoming: fetchApiUpcoming,
|
|
|
|
fetchScene,
|
2020-02-09 01:01:39 +00:00
|
|
|
};
|