feat(spotify): implement milestone M4 importers

This commit is contained in:
2026-04-12 02:00:50 -05:00
parent d8570edcf0
commit 141488c0f2
12 changed files with 521 additions and 14 deletions
+2 -1
View File
@@ -4,6 +4,7 @@ import minimist from "minimist";
import { fileURLToPath } from "node:url";
import { getAuthStatus, runAuthorizationFlow } from "./auth.js";
import { runImportCommand } from "./importers/index.js";
import {
runAddToPlaylistCommand,
runCreatePlaylistCommand,
@@ -70,7 +71,7 @@ export function createDefaultHandlers(): CommandHandlers {
"add-to-playlist": runAddToPlaylistCommand,
"remove-from-playlist": runRemoveFromPlaylistCommand,
"search-and-add": runSearchAndAddCommand,
import: notImplemented("import")
import: runImportCommand
};
}