From 602289865407d5b047cd1e2747e72acbbbe260d3 Mon Sep 17 00:00:00 2001 From: na2na-p Date: Sat, 6 Jan 2024 14:40:11 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=AF=E3=83=A9=E3=82=A4=E3=82=A2=E3=83=B3?= =?UTF-8?q?=E3=83=88=E3=81=A7Spotify=E3=82=92=E4=BD=BF=E3=81=88=E3=81=AA?= =?UTF-8?q?=E3=81=84=E3=82=88=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index fc011ea8..2179b148 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,12 +4,18 @@ import { Ping, VoiceChannel, YouTube, - Spotify, + // getSpotifyInstance, } from './features/commands/index.js'; import { getConfig } from './features/config/index.js'; import { Client } from './features/core/index.js'; new Client({ config: getConfig(), - commands: [new Ping(), new VoiceChannel(), new YouTube(), new Spotify()], + commands: [ + new Ping(), + new VoiceChannel(), + new YouTube(), + // TODO: シングルトンやめる + // getSpotifyInstance(), + ], });