mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 08:16:16 -04:00
12 lines
471 B
TypeScript
12 lines
471 B
TypeScript
import { BrandGit } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.git-memo.title'),
|
|
path: '/git-memo',
|
|
description: translate('tools.git-memo.description'),
|
|
keywords: ['git', 'push', 'force', 'pull', 'commit', 'amend', 'rebase', 'merge', 'reset', 'soft', 'hard', 'lease'],
|
|
component: () => import('./git-memo.vue'),
|
|
icon: BrandGit,
|
|
});
|