mirror of
https://github.com/KevinMidboe/moviedb.git
synced 2025-10-29 17:50:25 +00:00
22 lines
246 B
JavaScript
22 lines
246 B
JavaScript
|
|
/*
|
|
* Exports the constructor
|
|
*/
|
|
|
|
module.exports = function MovieDB(api_key){
|
|
if(api_key) this.api_key = api_key;
|
|
else throw new Error('Bad api key');
|
|
};
|
|
|
|
/*
|
|
* API auth
|
|
*/
|
|
|
|
require('./auth');
|
|
|
|
/*
|
|
* API request
|
|
*/
|
|
|
|
require('./request');
|