Skip to content
This repository has been archived by the owner on Sep 27, 2022. It is now read-only.

Commit

Permalink
#28
Browse files Browse the repository at this point in the history
  • Loading branch information
Adivise committed Sep 11, 2022
1 parent 7ec81bf commit 72561a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions nanospace.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ const { Client, Collection, GatewayIntentBits } = require("discord.js");
const { Manager } = require("erela.js");
const Spotify = require("better-erela.js-spotify").default;
const Deezer = require("erela.js-deezer");
const Tidal = require("erela.js-tidal");
const AppleMusic = require("better-erela.js-apple").default;
const Facebook = require("erela.js-facebook");
const { I18n } = require("locale-parser");
Expand Down Expand Up @@ -43,7 +44,8 @@ class MainClient extends Client {
new Spotify(),
new Facebook(),
new Deezer(),
new AppleMusic()
new AppleMusic(),
new Tidal()
],
send(id, payload) {
const guild = client.guilds.cache.get(id);
Expand All @@ -59,4 +61,4 @@ class MainClient extends Client {
return super.login(this.token);
};
};
module.exports = MainClient;
module.exports = MainClient;
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"erela.js": "^2.3.3",
"erela.js-deezer": "^1.0.7",
"erela.js-facebook": "^1.0.4",
"erela.js-tidal": "^1.0.2",
"figlet": "^1.5.0",
"humanize-duration": "^3.27.1",
"locale-parser": "^1.1.2",
Expand Down

0 comments on commit 72561a3

Please sign in to comment.