2023-04-05 22:55:40 +02:00
|
|
|
import { SpeedFilled } from '@vicons/material';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-04-05 22:55:40 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.benchmark-builder.title'),
|
2023-04-05 22:55:40 +02:00
|
|
|
path: '/benchmark-builder',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.benchmark-builder.description'),
|
2023-04-05 22:55:40 +02:00
|
|
|
keywords: ['benchmark', 'builder', 'execution', 'duration', 'mean', 'variance'],
|
|
|
|
component: () => import('./benchmark-builder.vue'),
|
|
|
|
icon: SpeedFilled,
|
2023-04-10 13:11:10 +02:00
|
|
|
createdAt: new Date('2023-04-05'),
|
2023-04-05 22:55:40 +02:00
|
|
|
});
|