diff --git a/.gitignore b/.gitignore
index 66ee735..afc2cc6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,4 @@
/node_modules/
/.env
+
+.idea
diff --git a/.idea/.gitignore b/.idea/.gitignore
deleted file mode 100644
index b58b603..0000000
--- a/.idea/.gitignore
+++ /dev/null
@@ -1,5 +0,0 @@
-# Default ignored files
-/shelf/
-/workspace.xml
-# Editor-based HTTP Client requests
-/httpRequests/
diff --git a/.idea/modules.xml b/.idea/modules.xml
deleted file mode 100644
index 1b6a7f9..0000000
--- a/.idea/modules.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/tmdb-ts.iml b/.idea/tmdb-ts.iml
deleted file mode 100644
index 0c8867d..0000000
--- a/.idea/tmdb-ts.iml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
deleted file mode 100644
index 94a25f7..0000000
--- a/.idea/vcs.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/tmdb.ts b/src/tmdb.ts
index 8948966..7024573 100644
--- a/src/tmdb.ts
+++ b/src/tmdb.ts
@@ -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);
-})()
-
-