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(), + ], });