mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-06-03 21:54:46 -04:00
13 lines
483 B
TypeScript
13 lines
483 B
TypeScript
import { SpeedFilled } from '@vicons/material';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'Benchmark builder',
|
|
path: '/benchmark-builder',
|
|
description: 'Easily compare execution time of tasks with this very simple online benchmark builder.',
|
|
keywords: ['benchmark', 'builder', 'execution', 'duration', 'mean', 'variance'],
|
|
component: () => import('./benchmark-builder.vue'),
|
|
icon: SpeedFilled,
|
|
createdAt: new Date('2023-04-05'),
|
|
});
|