change naming from index to command

This commit is contained in:
dal 2025-10-08 10:44:32 -06:00
parent d123494372
commit f8a1b0636d
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
5 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
import type { Command } from 'commander';
import { createAuthCommand } from './auth';
import { createDeployCommand } from './deploy';
import { createInitCommand } from './init';
import { createSettingsCommand } from './settings';
import { createAuthCommand } from './auth/command';
import { createDeployCommand } from './deploy/command';
import { createInitCommand } from './init/command';
import { createSettingsCommand } from './settings/command';
import { createUpdateCommand } from './update';
/**