@magic-mustard/sqlsync
Version:
SQLSync simplifies database schema evolution by allowing a declarative approach to table management
17 lines (16 loc) • 515 B
JavaScript
;
// cli/status.ts
Object.defineProperty(exports, "__esModule", { value: true });
exports.StatusCommand = void 0;
class StatusCommand {
register(program) {
program
.command('status')
.description('Check the current synchronization status')
.action((options) => {
console.log('Checking synchronization status...');
// Logic for status check will be handled by orchestrator
});
}
}
exports.StatusCommand = StatusCommand;