/**
 * Failed to minify the file using Terser v5.39.0. Serving the original version.
 * Original file: /npm/media-finder-cli@1.7.0/dist/index.js
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
#!/usr/bin/env node
import { Command } from "commander";
import { getRunCommand } from "./subcommands/run.js";
import { getShowSchemaCommand } from "./subcommands/show-schema.js";
import { getWebUiCommand } from "./subcommands/web-ui.js";
const program = new Command();
program.addCommand(await getRunCommand());
program.addCommand(await getShowSchemaCommand());
program.addCommand(await getWebUiCommand());
program.parseAsync();
