alias import update

This commit is contained in:
Ean Milligan 2025-07-15 01:24:28 -04:00
parent f2ed8a4f16
commit 5233d029f3
1 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
import { add, update } from './aliasAddUpdate.ts';
import { clone } from './clone.ts';
import { deleteAll, deleteOne } from './aliasDelete.ts';
import { add, update } from 'commands/aliasCmd/aliasAddUpdate.ts';
import { clone } from 'commands/aliasCmd/clone.ts';
import { deleteAll, deleteOne } from 'commands/aliasCmd/aliasDelete.ts';
import { help } from 'commands/aliasCmd/aliasHelp.ts';
import { list } from 'commands/aliasCmd/list.ts';
import { rename } from './rename.ts';
import { rename } from 'commands/aliasCmd/rename.ts';
import { run } from 'commands/aliasCmd/run.ts';
import { view } from 'commands/aliasCmd/view.ts';