From 5233d029f31be19591b67f0fdc488bccfb6cf29a Mon Sep 17 00:00:00 2001 From: Ean Milligan Date: Tue, 15 Jul 2025 01:24:28 -0400 Subject: [PATCH] alias import update --- src/commands/aliasCmd/_index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands/aliasCmd/_index.ts b/src/commands/aliasCmd/_index.ts index b0f9433..a52396d 100644 --- a/src/commands/aliasCmd/_index.ts +++ b/src/commands/aliasCmd/_index.ts @@ -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';