mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 08:46:15 -04:00
13 lines
517 B
TypeScript
13 lines
517 B
TypeScript
import { SpeedFilled } from '@vicons/material';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.benchmark-builder.title'),
|
|
path: '/benchmark-builder',
|
|
description: translate('tools.benchmark-builder.description'),
|
|
keywords: ['benchmark', 'builder', 'execution', 'duration', 'mean', 'variance'],
|
|
component: () => import('./benchmark-builder.vue'),
|
|
icon: SpeedFilled,
|
|
createdAt: new Date('2023-04-05'),
|
|
});
|