askexperts
Version:
AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol
17 lines • 682 B
JavaScript
import { registerNostrImportCommand } from "./nostr.js";
/**
* Register the import command with its subcommands
* @param docstoreCommand The parent docstore command
* @param addCommonOptions Function to add common options to commands
*/
export function registerImportCommand(docstoreCommand, addCommonOptions) {
// Create the import command
const importCommand = docstoreCommand
.command("import")
.description("Import documents from various sources");
// Add common options
// addCommonOptions(importCommand);
// Register import subcommands
registerNostrImportCommand(importCommand, addCommonOptions);
}
//# sourceMappingURL=index.js.map