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