aboutsummaryrefslogtreecommitdiff
path: root/src/tools/git-memo/index.ts
blob: f65ffe074a21bff815382777938e5b7604062444 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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,
});