11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
'use strict';
|
|
|
|
const { fetchApiLatest, fetchApiUpcoming, fetchScene } = require('./gamma');
|
|
|
|
|
|
module.exports = {
|
|
fetchLatest: fetchApiLatest,
|
|
fetchScene,
|
|
fetchUpcoming: fetchApiUpcoming,
|
|
};
|