blob: 426d287a21061f571a855cac70350993fe3e6af2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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'),
});
|