tablerizer
Version:
🎲 Tablerizer - The PostgreSQL table export wizard! Generate SQL files for RBAC, RLS, triggers, and schema documentation
17 lines (13 loc) • 388 B
JavaScript
/**
* Tablerizer CLI Binary
*
* This is the command-line interface for the Tablerizer PostgreSQL export wizard.
* It connects the compiled library to command-line usage.
*/
import { runCLI } from "../lib/cli.js";
// Run the CLI with proper error handling
runCLI().catch((error) => {
console.error("💥 Spell failed:", error.message);
process.exit(1);
});