#!/usr/bin/env node
const {init} = require('./commands/commands.js');
if (require.main === module) {
const [command, ...args] = process.argv.slice(2);
if (command === 'init') {
init();
} else {
console.error('Unrecognized command. Use "npx pa-react-themes init" to initialize.');
}
}