remove .idea

This commit is contained in:
Blake Joynes
2021-05-15 00:28:22 -04:00
parent bf8b31d82a
commit 28cdc72bce
6 changed files with 2 additions and 44 deletions

View File

@@ -1,6 +1,4 @@
import { Account } from "./endpoints/account";
import {config} from "./config";
import fetch from "node-fetch";
import {Certification} from "./endpoints/certification";
import {Change} from "./endpoints/changes";
@@ -24,18 +22,7 @@ export class TMDB {
return new Change(this.accessToken);
}
}
const tmdb = new TMDB(config.accessToken!);
(async () => {
const changes = await tmdb.changes.movies()
console.log(changes);
})()