2024-03-11 11:19:32 +01:00
|
|
|
import { Mailbox } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-03-11 18:43:34 +08:00
|
|
|
import { translate as t } from '@/plugins/i18n.plugin';
|
2024-03-11 11:19:32 +01:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-03-11 18:43:34 +08:00
|
|
|
name: t('tools.safelink-decoder.title'),
|
2024-03-11 11:19:32 +01:00
|
|
|
path: '/safelink-decoder',
|
2024-03-11 18:43:34 +08:00
|
|
|
description: t('tools.safelink-decoder.description'),
|
2024-03-11 11:19:32 +01:00
|
|
|
keywords: ['outlook', 'safelink', 'decoder'],
|
|
|
|
component: () => import('./safelink-decoder.vue'),
|
|
|
|
icon: Mailbox,
|
|
|
|
createdAt: new Date('2024-03-11'),
|
|
|
|
});
|