mirror of
https://github.com/Viren070/stremio-gdrive-addon.git
synced 2025-12-01 23:20:04 +01:00
feat: remove redundant credentials variable
This commit is contained in:
@@ -1,13 +1,7 @@
|
||||
var credentials = {
|
||||
client_id: "YOUR_CLIENT_ID",
|
||||
client_secret: "YOUR_CLIENT_SECRET",
|
||||
refresh_token: "YOUR_REFRESH_TOKEN",
|
||||
};
|
||||
|
||||
const CREDENTIALS = {
|
||||
clientId: credentials.client_id,
|
||||
clientSecret: credentials.client_secret,
|
||||
refreshToken: credentials.refresh_token,
|
||||
clientId: "YOUR_CLIENT_ID",
|
||||
clientSecret: "YOUR_CLIENT_SECRET",
|
||||
refreshToken: "YOUR_REFRESH_TOKEN",
|
||||
};
|
||||
|
||||
const CONFIG = {
|
||||
|
||||
Reference in New Issue
Block a user